T
Tom
[abc] - matches "a", "b", or "c"
[^abc] - matches anything except "a", "b", and "c"
(abc) - matches "abc", with back reference
??? - matches anything except "abc" literally?? What is the syntax for
this expression?
If this kind of non-matching grouping expression doesn't exist, what's
an alternate way to have the regexp engine (perl in my case), match
"anything but 'abc'"?
Thanks!
[^abc] - matches anything except "a", "b", and "c"
(abc) - matches "abc", with back reference
??? - matches anything except "abc" literally?? What is the syntax for
this expression?
If this kind of non-matching grouping expression doesn't exist, what's
an alternate way to have the regexp engine (perl in my case), match
"anything but 'abc'"?
Thanks!