A
Ali Eghtebas
Hi,
Why isn't this working? What's wrong with it? Am I missing something here?
Why this pattern wont match the string "cc".
Pattern: [^a].|.[^b] (This should match anything except "ab"
String: cc
While this will: [^a]c|c[^b]
Isn't a . supposed to match everything except \n unless modified by
SingleLine option?
Why isn't this working? What's wrong with it? Am I missing something here?
Why this pattern wont match the string "cc".
Pattern: [^a].|.[^b] (This should match anything except "ab"
String: cc
While this will: [^a]c|c[^b]
Isn't a . supposed to match everything except \n unless modified by
SingleLine option?