Hi all,
So I have a long string that contains placeholder strings throughout it, like so:
string input = "abcdefg[MARK]h[MARK]ijklmn[MARK]p[MARK]qrstuvwxyz";
I wish to parse this string for occurences of "[MARK]" + singlewildcardchar + "[MARK]";
In the above example I'd like to return the letters 'h' and 'p'. How can I do this with Regex Patterns? Or is there a simpler way?
Thanks,
Jib