show/hide this revision's text 2 Duplicate

Regex to validate regex [closed]

Duplicate of http://stackoverflow.com/questions/362793/regexp-that-matches-valid-regexps

How do you produce a regex that matches only valid regex?

For instance: "[hc]at" would be valid (matching "hat" and "cat"), but "[hcat" would be invalid, as it is missing ].

show/hide this revision's text 1

Regex to validate regex

How do you produce a regex that matches only valid regex?

For instance: "[hc]at" would be valid (matching "hat" and "cat"), but "[hcat" would be invalid, as it is missing ].