G
Guest
I am trying to build a regular expression that will fail to match if the line
starts with a particular phrase, for example I want the match to fail if the
line starts with "To Do". In other versions of regular expressions there is
the ~ operator that lets me specify this, so I could do something like ~To
Do.* and then it will not match any lines that have To Do in them. How do I
create something similar in .NET?
Thanks,
starts with a particular phrase, for example I want the match to fail if the
line starts with "To Do". In other versions of regular expressions there is
the ~ operator that lets me specify this, so I could do something like ~To
Do.* and then it will not match any lines that have To Do in them. How do I
create something similar in .NET?
Thanks,