Use

It's like a match, but it returns an Option

```rust let to_match = "hello world";

let opt = matchstart!{tomatch, "hello" | "something" => "something else" };

if let Some(value) = opt { println!("{}", value); } ```