Regex to validate regex [closed] - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:00:17Zhttp://stackoverflow.com/feeds/question/416532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/416532/regex-to-validate-regex-closed-1Regex to validate regex [closed]dalle2009-01-06T13:39:22Z2009-01-06T13:49:15Z
<p>Duplicate of <a href="http://stackoverflow.com/questions/362793/regexp-that-matches-valid-regexps">http://stackoverflow.com/questions/362793/regexp-that-matches-valid-regexps</a></p>
<p>How do you produce a regex that matches only valid regex?</p>
<p>For instance: <code>"[hc]at"</code> would be valid (matching <code>"hat"</code> and <code>"cat"</code>), but <code>"[hcat"</code> would be invalid, as it is missing <code>]</code>.</p>
http://stackoverflow.com/questions/416532/regex-to-validate-regex-closed/416545#4165451Answer by Adam Bellaire for Regex to validate regex [closed]Adam Bellaire2009-01-06T13:42:08Z2009-01-06T13:42:08Z<p>In general, no, because nested pairs of parens and brackets, etc., is something you need a recursive descendant parser (or similar) to handle.</p>
http://stackoverflow.com/questions/416532/regex-to-validate-regex-closed/416554#4165541Answer by Markus Lausberg for Regex to validate regex [closed]Markus Lausberg2009-01-06T13:45:13Z2009-01-06T13:45:13Z<p>In Java you can check a regular expression by calling</p>
<pre><code>// Create a pattern to match breaks
Pattern p = Pattern.compile("[,\\s]+");
</code></pre>
<p>compile methode throws PatternSyntaxException if the expression's syntax is invalid</p>
http://stackoverflow.com/questions/416532/regex-to-validate-regex-closed/416557#4165573Answer by Aron Rotteveel for Regex to validate regex [closed]Aron Rotteveel2009-01-06T13:45:32Z2009-01-06T13:45:32Z<p>This question has been <strong>asked</strong> and <strong>answered</strong> before:</p>
<p><a href="http://stackoverflow.com/questions/362793/regexp-that-matches-valid-regexps">http://stackoverflow.com/questions/362793/regexp-that-matches-valid-regexps</a></p>
http://stackoverflow.com/questions/416532/regex-to-validate-regex-closed/416575#4165751Answer by moogs for Regex to validate regex [closed]moogs2009-01-06T13:49:15Z2009-01-06T13:49:15Z<p>Use the right tool for the job. A better solution would be to use the RegEx class of the language you are using.</p>
<p>Something like:</p>
<pre><code>> Regex rx = new Regex("[INVALID REGEX
> HERE"); if(rx.Valid()) { ... }
</code></pre>