Regex to validate regex [closed] - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:00:17Z http://stackoverflow.com/feeds/question/416532 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416532/regex-to-validate-regex-closed -1 Regex to validate regex [closed] dalle 2009-01-06T13:39:22Z 2009-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#416545 1 Answer by Adam Bellaire for Regex to validate regex [closed] Adam Bellaire 2009-01-06T13:42:08Z 2009-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#416554 1 Answer by Markus Lausberg for Regex to validate regex [closed] Markus Lausberg 2009-01-06T13:45:13Z 2009-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#416557 3 Answer by Aron Rotteveel for Regex to validate regex [closed] Aron Rotteveel 2009-01-06T13:45:32Z 2009-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#416575 1 Answer by moogs for Regex to validate regex [closed] moogs 2009-01-06T13:49:15Z 2009-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>&gt; Regex rx = new Regex("[INVALID REGEX &gt; HERE"); if(rx.Valid()) { ... } </code></pre>