How do I write a .net regex which will match a string that does NOT start with "Seat"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
|||
|
Writing a regex for a "does not start with" can be a little tricky. It's often easier to write a regex to detect that a string starts with a substring and not the match instead. For Example:
|
|||
|
|
|
I would suggest not doing it. You should be able to just get every string that doesn't match.
|
||||
|
|