You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess, the OP interprets anythingBut("abb") as any character, but not looking at "abb", and the thing repeated, i.e., (?:(?!abb)(?s:.))+ which is equivalent to his expression (modulo mistakes I may have done), but doesn't make much sense to me.
Actually generated:
(?:[^abb]*)
Expected to be generated:
(?:a(?!bb)|[^a])+
or something like that.
The text was updated successfully, but these errors were encountered: