top | item 16601932

(no title)

petrikapu | 8 years ago

Is there regular expression to match regular expression?

discuss

order

ridiculous_fish|8 years ago

No. One way to convince yourself of this is that regexp capture groups must properly nest: /())(()/ is invalid for example. Regexps famously cannot match balanced parenthesis.