I need a regexp that will find improperly nested brackets, not properly. For example:
()(( — matches regexp
(()) - doesn't match regexp
))((( — matches regexp
etc.
I need a regexp that will find improperly nested brackets, not properly. For example:
()(( — matches regexp
(()) - doesn't match regexp
))((( — matches regexp
etc.