active questions tagged bnf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T07:11:22Zhttp://stackoverflow.com/feeds/tag/bnfhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1665427/generate-objective-c-parser-from-bnf-grammar1Generate Objective-C parser from BNF grammarDave Jarvis2009-11-03T05:31:49Z2009-12-04T01:39:23Z
<p>I have looked at the following software tools:</p>
<ul>
<li>Ragel <a href="http://www.complang.org/ragel/" rel="nofollow">http://www.complang.org/ragel/</a></li>
<li>ANTLR <a href="http://www.antlr.org/" rel="nofollow">http://www.antlr.org/</a></li>
</ul>
<p>ANTLR seems the most straight-forward, however its documentation is lacking.
Ragel looks possible, too, but I do not see an easy way to convert <a href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur%5FForm" rel="nofollow">BNF</a> into its syntax.</p>
<p>What other tools are available that can take BNF input and generate a corresponding, Unicode-friendly, cross-platform, standalone, Objective-C parser?</p>
<p>Many thanks for all suggestions.</p>
http://stackoverflow.com/questions/1839146/as3-grammar-most-accurate0AS3 Grammar: Most accurateBrian Heylin2009-12-03T10:45:56Z2009-12-03T14:25:53Z
<p>I'm looking for an accurate AS3 grammar (format in not an issue, but I presume ANTLR will feature the most) to use for a practice grammar I'm making. </p>
<p>What is the most accurate grammar available for AS3?</p>
http://stackoverflow.com/questions/1798738/scala-parser-token-delimiter-problem1Scala Parser Token Delimiter ProblemBrian Heylin2009-11-25T17:50:22Z2009-11-26T23:23:01Z
<p>I'm trying to define a grammar for the commands below.</p>
<pre><code>object ParserWorkshop {
def main(args: Array[String]) = {
ChoiceParser("todo link todo to database")
ChoiceParser("todo link todo to database deadline: next tuesday context: app.model")
}
}
</code></pre>
<p>The second command should be tokenized as:</p>
<pre><code>action = todo
message = link todo to database
properties = [deadline: next tuesday, context: app.model]
</code></pre>
<p>When I run this input on the grammar defined below, I receive the following error message:</p>
<pre><code>[1.27] parsed: Command(todo,link todo to database,List())
[1.36] failure: string matching regex `\z' expected but `:' found
todo link todo to database deadline: next tuesday context: app.model
^
</code></pre>
<p>As far as I can see it fails because the pattern for matching the words of the message is nearly identical to the pattern for the key of the property key:value pair, so the parser cannot tell where the message ends and the property starts. I can solve this by insisting that start token be used for each property like so:</p>
<pre><code>todo link todo to database :deadline: next tuesday :context: app.model
</code></pre>
<p>But i would prefer to keep the command as close natural language as possible.
I have two questions:</p>
<p>What does the error message actually mean?
And how would I modify the existing grammar to work for the given input strings?</p>
<pre><code>import scala.util.parsing.combinator._
case class Command(action: String, message: String, properties: List[Property])
case class Property(name: String, value: String)
object ChoiceParser extends JavaTokenParsers {
def apply(input: String) = println(parseAll(command, input))
def command = action~message~properties ^^ {case a~m~p => new Command(a, m, p)}
def action = ident
def message = """[\w\d\s\.]+""".r
def properties = rep(property)
def property = propertyName~":"~propertyValue ^^ {
case n~":"~v => new Property(n, v)
}
def propertyName: Parser[String] = ident
def propertyValue: Parser[String] = """[\w\d\s\.]+""".r
}
</code></pre>
http://stackoverflow.com/questions/1800199/is-there-a-bnf-mode-for-emacs1Is there a BNF mode for Emacs?jmmcd2009-11-25T21:50:30Z2009-11-26T15:01:22Z
<p>I have to edit lots of grammar files in .bnf format. Is there a mode for this in Emacs?</p>
<p>I've looked at CEDET's semantic package, and it seems that it USED to have a bnf-mode, but not any more. This snippet is googlable, but semantic-bnf-mode doesn't seem to exist:</p>
<pre><code>(autoload 'semantic-bnf-mode "semantic-bnf" "Mode for Bovine Normal Form." t)
(add-to-list 'auto-mode-alist '("\\.bnf$" . semantic-bnf-mode))
</code></pre>
http://stackoverflow.com/questions/1786565/ebnf-for-ecmascript1EBNF for ECMAScript?Peter Boughton2009-11-23T22:38:34Z2009-11-24T02:46:27Z
<p>I'm trying to find a good EBNF description of ECMAScript, but so far I've not found anything complete.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1781701/grammars-scala-parsing-combinators-and-orderless-sets2Grammars, Scala Parsing Combinators and Orderless SetsBrian Heylin2009-11-23T08:03:05Z2009-11-23T23:55:13Z
<p>I'm writing an application that will take in various "command" strings. I've been looking at the Scala combinator library to tokenize the commands. I find in a lot of cases I want to say: "These tokens are an orderless set, and so they can appear in any order, and some might not appear".</p>
<p>With my current knowledge of grammars I would have to define all combinations of sequences as such (pseudo grammar):</p>
<pre><code>command = action~content
action = alphanum
content = (tokenA~tokenB~tokenC | tokenB~tokenC~tokenA | tokenC~tokenB~tokenA ....... )
</code></pre>
<p>So my question is, considering tokenA-C are unique, is there a shorter way to define a set of any order using a grammar? </p>
http://stackoverflow.com/questions/1220718/bug-in-gold-parser-lalr0Bug in Gold Parser? LALRacidzombie242009-08-03T05:03:48Z2009-11-23T22:40:43Z
<p>Here is a piece of my bnf grammer.</p>
<pre><code>//this works
<ter-stmnt> ::= <rval> '?' <rval> ':' <rval>
//this gets an error
<ter-stmnt> ::= <bool-val> '?' <rval> ':' <rval>
<bool-val> ::= <rval>
</code></pre>
<p>This seems insane, shouldnt the second be EXACTLY the same as the first? i prefer the second bc when reading i see that i expect a bool value as oppose to the generic rval which can mean anything.</p>
<p>I am using Gold Parser 3.4.4</p>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language6Where can I find standard BNF or YACC grammar for C++ language?Kevin Yu2009-03-05T03:24:22Z2009-11-16T20:28:56Z
<p>I'm trying to work on a kind of code generator to help unit-testing an legacy C/C++ blended project. I don't find any kind of independent tool can generate stub code from declaration. So I decide to build one, it shouldn't be that hard. </p>
<p>Please, anybody can point me a standard grammar link, better described by yacc language.</p>
<p>Hope I'm not reinventing wheel, please help me out in that case.</p>
<p>Best Regards,
Kevin</p>
http://stackoverflow.com/questions/1744406/what-is-the-name-of-the-convention-used-in-this-syntax-diagram2what is the name of the convention used in this syntax diagramdreftymac2009-11-16T19:44:07Z2009-11-16T19:56:00Z
<p>I found this diagram in the JSON specification:</p>
<p><img src="http://www.json.org/array.gif" alt="alt text"></p>
<p>Where does this diagramming convention come from? Is it just some random convention cooked up by D.C.?</p>
http://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg2Use existing languages in BNF with TinyPG?Jeremy Rudd2008-11-26T16:09:14Z2009-11-06T02:12:01Z
<p>How can I use <a href="http://www.devincook.com/GOLDParser/grammars/index.htm" rel="nofollow">these BNF grammars</a> which are in <a href="http://www.devincook.com/GOLDParser/doc/meta-language/index.htm" rel="nofollow">GOLD meta-syntax</a> (RegExp + BNF) with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?</p>
<p>I believe it should be pretty simple since TinyPG needs RegExp + <strong>EBNF</strong> in comparison to the GOLD grammars which are RegExp + <strong>BNF</strong>.</p>
<p>Also, is there any TinyPG source code for any language available, just to see what sort of conversion I would have to do?</p>
http://stackoverflow.com/questions/1684502/deriving-a-state-machine-from-a-bnf-grammar0Deriving a state machine from a BNF grammarmikesamuel2009-11-05T23:55:58Z2009-11-06T02:05:55Z
<p>I am trying to put together a proof of concept of an XSS-safe string interpolation scheme.</p>
<p>Given a string with substitutions,</p>
<pre><code>"Hello <b>$planetoid</b>!"
</code></pre>
<p>I want break it into literal portions and substitutions <code>("Hello<b>" planetoid "</b>!")</code> and then run a state machine left to right over the literal portions. When I reach an interpolated value (<code>planetoid</code> in the above), I need to be able to get from the state to an appropriate escaping function.</p>
<p>Does anyone know of any examples of how to use lex/yacc/bison to derive a state machine and be able to associate labels in the grammar with output states? I want to derive a state machine that I can use both in javascript, and to try and replace PHP's underlying string implementation.</p>
<p>My reasons for doing this are described <a href="http://google-caja.googlecode.com/svn/changes/mikesamuel/string-interpolation-29-Jan-2008/trunk/src/js/com/google/caja/interp/index.html" rel="nofollow">here</a>.</p>
<p>cheers,
mike</p>
http://stackoverflow.com/questions/1675398/bnf-grammar-for-sequence-of-statements0BNF grammar for sequence of statementsCaptnCraig2009-11-04T17:28:45Z2009-11-04T17:57:53Z
<p>If I am making a grammar for a c-like language that has a sequence of statements, what is the most standard way for defining the grammar?</p>
<p>My thought is to do something like this:</p>
<pre><code><program> ::= <statement>
<statement> ::= <statement-head><statement-tail>
<statement-head> ::= <if-statement> | <var-declaration> | <assignment> | <whatever>
<statement-tail> ::= ; | ;<statement>
</code></pre>
<p>but that feels a little clunky to me. I've also considered making </p>
<pre><code><program> ::= <statement>*
</code></pre>
<p>or </p>
<pre><code><statement> ::= <statement-head> ; | <sequence>
<sequence> ::= <statement> <statement>
</code></pre>
<p>type productions.</p>
<p>Is there a standard or accepted way to do this. I want my AST to be as clean as possible.</p>
http://stackoverflow.com/questions/1435411/what-is-the-bnf-for-a-regex-in-order-to-write-a-full-or-partial-parser2What is the BNF for a regex (in order to write a full or partial parser)peter.murray.rust2009-09-16T20:55:07Z2009-11-02T08:51:44Z
<p>I am interested <a href="http://stackoverflow.com/questions/1429995/code-to-parse-capture-groups-in-regular-expressions-into-a-tree">in parsing regexes</a> (not to be confused with using regexes for parsing). Is there a BNF for Java 1.6 regexes (or other languages?)</p>
<p>[NOTE: There is a <a href="http://stackoverflow.com/questions/265457/regex-grammar">similar older question</a> which did not lead to an answer for Java.]</p>
<p><strong>EDIT</strong> To explain why I need to do this. We are implementing a shallow parser for Natural language processing which first identifies and tags tokens. These are then further processed with a regex. I need to know what groups have been captured by the regex (the automaton only captures the last of each bracket) and I also want to annotate the regex with comments.</p>
http://stackoverflow.com/questions/1317256/z80-asm-bnf-structure-im-am-on-the-right-track3Z80 ASM BNF structure... I'm am on the right track?Gary Paluk2009-08-22T22:58:26Z2009-10-17T19:50:00Z
<p>I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am currently trying to write the format of Z80 ASM as EBNF so that I can then figure out where to go from there to create machine code from the source. At the moment I have the following:</p>
<pre><code>Assignment = Identifier, ":" ;
Instruction = Opcode, [ Operand ], [ Operand ] ;
Operand = Identifier | Something* ;
Something* = "(" , Identifier, ")" ;
Identifier = Alpha, { Numeric | Alpha } ;
Opcode = Alpha, Alpha ;
Int = [ "-" ], Numeric, { Numeric } ;
Alpha = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ;
Numeric = "0" | "1" | "2" | "3"| "4" | "5" | "6" | "7" | "8" | "9" ;
</code></pre>
<p>Any directional feedback if I am going wrong would be excellent.</p>
<p>Many thanks!</p>
http://stackoverflow.com/questions/1481288/ebnf-parsing-to-xml1(E)BNF Parsing to XMLHugo S Ferreira2009-09-26T14:03:07Z2009-10-17T01:13:31Z
<p>Is there any (E)BNF parser out there which is able to generate XML trees of the AST?</p>
<p>Rephrasing: what is the quickest way to compile an (E)BNF defined language into some sort of XML?</p>
<p>Bonus: Using Javascript :-)</p>
http://stackoverflow.com/questions/1578100/bnf-ebnf-for-xml-schema0bnf/ebnf for xml schemarebugger2009-10-16T13:39:24Z2009-10-16T14:02:47Z
<p>I'm looking for a BNF/EBNF of XML Schema.
I just found the one for XML (<a href="http://www.w3.org/TR/REC-xml" rel="nofollow">http://www.w3.org/TR/REC-xml</a> or extracted at <a href="http://www.jelks.nu/XML/xmlebnf.html" rel="nofollow">http://www.jelks.nu/XML/xmlebnf.html</a>).</p>
<p>Well it's a starting point, but I'm curious that I couldn't find a more specific one for XML Schema.</p>
http://stackoverflow.com/questions/872124/seeking-an-interactive-utility-for-creating-context-free-parser-grammars2Seeking an interactive utility for creating context free parser grammarsKent2009-05-16T10:12:04Z2009-10-15T04:17:04Z
<p>Hi,</p>
<p>I would like a utility which I can give a piece of text (in a text box) and experiment with a parser grammar (through editing a BNF of similar) and token structure while I can see how the parse tree would look (and if it's not able to parse the text using my current grammar, I would see where it halted).</p>
<p>The key word is interactivity. I could do this using flex and bison for example, but I would constantly have to re-create my lexer and parser.</p>
<p>Is there anything like this out there? I haven't found any. Ideally it should work in Linux and be free, if that's not an option it's still of interest.</p>
http://stackoverflow.com/questions/1568001/syntax-probably-bnf-spec-of-vba2Syntax (probably BNF) spec of VBA ?Homer J. Simpson2009-10-14T18:02:36Z2009-10-14T18:08:08Z
<p>Hi,</p>
<p>I have to maintain a portion of Access 2003 VBA code, which is not my primary programming language, and while I'm pretty solid on doing regular stuff, I would still like to have a pure spec of the language syntax.. It just saves a lot of time compared to reading tons of stupid tutorials that tell me what a for loop is.</p>
<p>Is there any resource on the VBA syntax ? I would be happy to have it as formal as possible, probably something like BNF. I couldnt find an official spec on it.</p>
http://stackoverflow.com/questions/1129149/visual-basic-6-0-language-syntax1Visual Basic 6.0 Language SyntaxMark Roddy2009-07-15T02:46:46Z2009-10-11T20:42:21Z
<p>I've done a fair bit of googling, but I've been unable to find what I'm looking for. I am looking for documentation of the syntax to the Visual Basic 6.0 language. Specifically something that could theoretically be used to build a parser for the syntax. Does anyone know of such documentation?</p>
http://stackoverflow.com/questions/442744/bnf-to-regular-expressions1BNF to regular ExpressionsMatt P2009-01-14T12:18:52Z2009-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/1042441/how-can-i-define-an-ini-file-grammar-using-the-bnfc1How can I define an INI file grammar using the BNFC?Cetin Sert2009-06-25T06:39:24Z2009-06-25T11:20:02Z
<p><a href="http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/" rel="nofollow">http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/</a></p>
<p>how should I write my labeled BNF to get BNFC to generate a INI parser for me?</p>
<p>I have only gotten so far o__O!</p>
<pre><code>entrypoints File ;
comment "#" ;
token ID ( letter | digit | ["-_'"] )+ ;
Ini. File ::= [Section] ;
Sect. Section ::= "[" ID "]" [Statement] ;
Bind. Statement ::= ID "=" ID ;
separator Statement "\n" ;
terminator Section "" ;
</code></pre>
<p><hr /></p>
<pre><code>[name]
#x = 10
y = 20
</code></pre>
<p><hr /></p>
<pre><code>Parse Successful!
[Abstract Syntax]
Ini [Sect (ID "name") [Bind (ID "y") (ID "20")]]
[Linearized tree]
[name]y = 20
</code></pre>
<p><hr /></p>
<pre><code>[name]
x = 10
#y = 20
</code></pre>
<p><hr /></p>
<pre><code>Parse Successful!
[Abstract Syntax]
Ini [Sect (ID "name") [Bind (ID "x") (ID "10")]]
[Linearized tree]
[name]x = 10
</code></pre>
<p>o__O I'm stuck ...</p>
http://stackoverflow.com/questions/658572/javame-suitable-grammar-compiler-recommendations1JavaME-suitable grammar compiler recommendations?izb2009-03-18T14:44:25Z2009-06-04T01:19:00Z
<p>I want to parse some data, and I have a BNF grammar to parse it with. Can anyone recommend any grammar compilers capable of generating code that can be used on a mobile device?</p>
<p>Since this is for JavaME, the generated code must be:</p>
<ul>
<li>Hopefully pretty small</li>
<li>Low dependencies on exotic Java libraries</li>
<li>Not dependant on any runtime jar files.</li>
</ul>
http://stackoverflow.com/questions/811604/javascript-for-loop-in-bnf0JavaScript for-loop in BNFblahblah2009-05-01T14:32:25Z2009-05-01T14:51:02Z
<p>Hi</p>
<p>I'm writing BNF for JavaScript which will be used to generate a lexer and a parser for the language. However, I'd like some ideas on how to design the for-loop. Here is the simplified version of my current BNF:</p>
<pre><code>[...]
VarDecl. Statement ::= "var" Identifier "=" Expr ";"
ForLoop. Statement ::= "for" "(" Expr ";" Expr ";" Expr ")"
[...]
</code></pre>
<p>So as you can see, there are two statements in the example, variable declarations and for-loops. There are a bunch of different expressions, but <em>none</em> of the expressions are also statements.</p>
<p>The problem now is that this JavaScript code will not pass through the parser:</p>
<pre><code>for (var x = 3; [...]; [...])
</code></pre>
<p>This is because a variable declaration is not an expression.</p>
<p>What are your ideas on how to solve this? I can think of a few ways, but I don't want to get in the way of your own thoughts, so I won't mention them here.</p>
http://stackoverflow.com/questions/796824/tool-for-generating-railroad-diagram-used-on-json-org3Tool for generating railroad diagram used on json.orgaleemb2009-04-28T08:31:36Z2009-04-28T13:05:57Z
<p>I love the syntax or <a href="http://en.wikipedia.org/wiki/Syntax%5Fdiagram" rel="nofollow">railroad diagrams</a> on <a href="http://www.json.org/" rel="nofollow">json.org</a> which are a graphical representation of the BNF language. I haven't found any tools that can produce results as eloquently. Can anyone identify the tool used to generate these diagrams?</p>
<p><img src="http://www.json.org/object.gif" alt="alt text" /></p>
<p><img src="http://www.json.org/number.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar4Parser-generator that outputs C# given a BNF grammar?ilitirit2008-09-30T15:32:02Z2009-04-13T21:14:37Z
<p>I'm looking for a tool that will be able to build a parser (in C#) if I give it a BNF grammar (eg. <a href="http://savage.net.au/SQL/sql-2003-2.bnf" rel="nofollow">http://savage.net.au/SQL/sql-2003-2.bnf</a>)</p>
<p>Does such a generator exist?</p>
http://stackoverflow.com/questions/719871/please-help-me-define-a-language-in-ebnf1Please help me define a language in EBNFJohn2009-04-05T23:17:00Z2009-04-05T23:43:23Z
<p>Give the EBNF specification for the language <code>L</code> that is made up of the chars <code>a</code>, <code>b</code> and <code>c</code> such that sentences in the language have the form</p>
<pre><code>L : sqsR
-s is a string of any combination of the characters a and b
-sR is that same string s reversed
-q is an odd number of c's followed by either an odd number of b's
or an even number of a’s.
</code></pre>
<p>What I have so far:</p>
<pre><code>L -> S
S -> {a}{b}Q
Q ->
</code></pre>
<p>If this is right, I'm still not really sure how to produce from <code>Q</code> and also how to represent <code>S</code> in reverse.</p>
<p>Any help is welcomed :)</p>
http://stackoverflow.com/questions/663027/ruby-grammar2Ruby Grammarfauxbody2009-03-19T16:53:34Z2009-03-19T17:01:48Z
<p>I'm looking for Ruby grammar in BNF form. Is there an <strong>official</strong> version?</p>
http://stackoverflow.com/questions/580142/bnf-grammar-matching1BNF grammar matchingStudent2009-02-24T01:44:07Z2009-02-24T02:33:02Z
<p>My teacher has given me two bnf grammars: </p>
<pre><code>A ::= 'd' | A 'e' A | A 'f' A
B ::= 'd' | B B 'e' | B B 'f'
</code></pre>
<p>and four strings to match with them:</p>
<ul>
<li>dffd</li>
<li>dddefddfe</li>
<li>dedf</li>
<li>deded</li>
</ul>
<p>I've figured out two of them, but the other two have me stumped. I don't want anyone to tell me the answers, but if someone could give me some hints as to where I'm going wrong it would be much appreciated.</p>
http://stackoverflow.com/questions/475949/how-to-determine-whether-a-grammar-is-ll1-lr0-slr13How to determine whether a grammar is LL(1) LR(0) SLR(1)Chris2009-01-24T12:19:49Z2009-02-16T21:13:12Z
<p>Is there a simple way to determine wether a grammar is LL1, LR0, SLR1... just from looking on the grammar without doing any complex analysis?</p>
<p>For instance: To decide wether a BNF Grammar is LL1 you have to calculate First and Follow sets first - which can be very time consuming in some cases.</p>
<p>Has anybody got an idea how to do this faster?
Any help would really be appreciated!</p>
http://stackoverflow.com/questions/463557/bnf-to-regex0BNF to RegexAdam Tegen2009-01-20T23:35:31Z2009-01-21T01:45:44Z
<p>Is there any way to convert the following BNF into a .Net regex? (I'm not stuck on the BNF, but I thought it might be the best way to explain what I was trying to do)</p>
<pre><code><field> ::= "<<" <fieldname> <options> ">>"
<options> ::= "" | "(" <option> ")"
<option> ::= "" |
<option> <non-paren> |
<option> <escaped-character>
<escaped-character> ::= "\\" | "\)"
<non-paren> ::= any character but paren
<fieldname> ::= any string that doesn't contain "(" or ">>"
</code></pre>
<p>I'm close, but I can't figure out how to deal with escaping "\" and ")". This captures the fieldname and option in named groups.</p>
<pre><code><<(?<fieldname>.\*?)(\((?<option>.*?)\))?>>
</code></pre>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>It turns out that I was rustier at BNFs than I thought.</p>
<p>What I was trying to get at is that parens are special characters. Inside the "option" section, they must be escaped by a slash. (And slashes must also be escaped).</p>