BNF to regular Expressions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:44:56Z http://stackoverflow.com/feeds/question/442744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/442744/bnf-to-regular-expressions 1 BNF to regular Expressions Matt P 2009-01-14T12:18:52Z 2009-08-26T06:28:42Z <p>How can I describe the language</p> <pre><code>A → AA | ( A ) | ε </code></pre> <p>generates using regular expressions? </p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442778#442778 6 Answer by David Schmitt for BNF to regular Expressions David Schmitt 2009-01-14T12:29:56Z 2009-01-14T12:29:56Z <p>Regular expressions cannot match nesting brackets.</p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442866#442866 10 Answer by MSalters for BNF to regular Expressions MSalters 2009-01-14T13:06:19Z 2009-01-14T13:06:19Z <p>Regular expressions accept strings from regular languages. Regular languages can also be accepted by an FSM. </p> <p>There's an potentially infinite number of brackets in your language that you have to match up. That means you need an infinite state, obviously impossible in any <em>Finite</em> State Machine. Therefore, your language isn't regular and can't be matched with a regex.</p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442904#442904 1 Answer by Boris for BNF to regular Expressions Boris 2009-01-14T13:22:30Z 2009-01-14T13:37:27Z <p>I'm not sure about how you could notate that language, but that language isn't regular, as can be shown using the pumping lemma for regular languages (and thus, it can't be noted by a regex). An intuitive explanation is that accepting words from that language would require the FDA to 'remember' the number of opening parenthesis that it just read every time it begins to read closing parenthesis, and that isn't possible for them as they have no 'memory'. A push-down automaton, on the other hand...</p> <p>Could that language be noted as {(<sup>n</sup>)<sup>n</sup>}<sup>*</sup>, for any n?</p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442953#442953 0 Answer by HenryR for BNF to regular Expressions HenryR 2009-01-14T13:34:14Z 2009-01-14T13:34:14Z <p>You can't - regular expressions can only recognise a small subset of possible languages. In particular, informally, any language that requires an unbounded amount of memory potentially to recognise is not RE recognisable. </p> <p>Here, you'd need an unbounded amount of memory to remember how many opening parentheses you've seen in order to make sure the number of closing parentheses are the same. </p> <p>You'll need some mechanism that is capable of parsing Context-Free Grammars to be able to recognise languages described by BNF in general. Modern parsers are very good at this!</p> http://stackoverflow.com/questions/442744/bnf-to-regular-expressions/442969#442969 0 Answer by Martin Brown for BNF to regular Expressions Martin Brown 2009-01-14T13:38:06Z 2009-01-14T13:38:06Z <p>As others have said you cannot do this with a single regular expression, however you can tokenize it with two "\(" and "\)". Seeing that your language can only have brackets in it though I'm not sure this is going to be very useful. </p> <p><strong>Note:</strong> You will also need a passer to ensure the brackets are paired up correctly. So “(()()” will tokenize but will not parse.</p>