Hey
So say suppose i have a string like this
Foo: 1, Bar: 2, Baz: 3
is it possible using match to get the value of Bar
(2) ?
What i need is something that searches for substring Bar
and then finds the appropriate value.
Something of the sort of (pseudocode)
match mystring {
"Bar: @x" => x
}