I have an old perl regex defined like this
my @data = split(/^[0-9]{1,3}\)?\t/m, $CLIP->GetText());
C# doesn't like the regex and says Unrecognized escape sequence? How can i fix this?
I tried this in C#
Regex rex = new Regex("/^[0-9]{1,3}\)?\t/m");
Regexetc.