Tagged Questions

BNF stands for Backus-Naur Form, or Backus Normal Form. It is form of notation for context-free grammars and is often used for (but is not restricted to) the description the syntax of programming languages. In addition to programming languages, it is also used to describe communication protocols and document formats.

learn more… | top users | synonyms (1)

21
votes
6answers
3k views

Tool for generating railroad diagram used on json.org

I love the syntax or railroad diagrams on json.org 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 ...
13
votes
5answers
11k views

How to determine whether a grammar is LL(1) LR(0) SLR(1)

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? For instance: To decide wether a BNF Grammar is LL1 you ...
12
votes
4answers
4k views

Repository of BNF Grammars?

Is there a place I can find Backus–Naur Form or BNF grammars for popular languages? Whenever I do a search I don't turn up much, but I figure they must be published somewhere. I'm most interested in ...
9
votes
5answers
4k views

Where can I find standard BNF or YACC grammar for C++ language?

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 ...
7
votes
2answers
403 views

What is wrong with this ParseKit BNF?

I'm using ParseKit for objective-C which takes a BNF-like syntax for specifying grammers: @start = command+; command = new; new = 'new' object ';'; object = 'house' | other; Inclusion of the last ...
7
votes
2answers
220 views

What is the easiest way of telling whether a BNF grammar is ambiguous or not?

Namely, is there a tool out there that will automatically show the full language for a given grammar, including highlighting ambiguities (if any)?
7
votes
3answers
625 views

Any BNF IDE with test features

I'm working on a new language and while writting the grammar I'd like to be able to test the grammar for completeness, conflicts and similar. I'm not really concern about the underlaying parser ...
7
votes
7answers
3k views

Visual Basic 6.0 Language Syntax

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 ...
7
votes
2answers
2k views

Ruby Grammar

I'm looking for Ruby grammar in BNF form. Is there an official version?
6
votes
2answers
2k views

EBNF or BNF for the LOGO programming language

Does anyone know where I can get the BNF or EBNF for the LOGO programming language?
6
votes
2answers
1k views

EBNF for ECMAScript?

I'm trying to find a good EBNF description of ECMAScript, but so far I've not found anything complete. Any ideas?
6
votes
2answers
2k views

Regex Grammar

Is there any BNF grammar for regular expression?
5
votes
5answers
262 views

Grammars, Scala Parsing Combinators and Orderless Sets

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 ...
5
votes
3answers
897 views

Z80 ASM BNF structure… I'm am on the right track?

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 ...
5
votes
4answers
5k views

Parser-generator that outputs C# given a BNF grammar?

I'm looking for a tool that will be able to build a parser (in C#) if I give it a BNF grammar (eg. http://savage.net.au/SQL/sql-2003-2.bnf) Does such a generator exist?
4
votes
2answers
154 views

fault-tolerant python based parser for WikiLeaks cables

Some time ago I started writing a BNF-based grammar for the cables which WikiLeaks released. However I now realized that my approach is maybe not the best and I'm looking for some improvement. A cabe ...
4
votes
1answer
194 views

spotting an Ambiguous BNF

I have an assignment to correct an ambiguous BNF, but I am completely lost. I know this not a true programming question, and I will gladly delete it if it is not an appropriate question for these ...
4
votes
2answers
100 views

What is the name of such notation?

JSON web site uses very clear notation to describe JSON's syntax: What is the name of such notation? Is this is just a graphical presentation of BNF or it has it's own name?
4
votes
2answers
267 views

How to correctly formalize the command line usage of GNU/Linux commands?

I'd like to write down a BNF-like formal grammar for describing the command line usage of some GNU/Linux tools. For example I can describe the usage of the cat command as: (cat-command) : 'cat' ...
4
votes
4answers
796 views

Where can I get material for learning EBNF?

Extended Backus–Naur Form: EBNF I'm very new to parsing concepts. Where can I get sufficiently easy to read and follow material for writing a grammar for the boost::spirit library, which uses a ...
3
votes
1answer
31 views

Converting EBNF to BNF for an LALR parser

I know there are several posts with a similar title. Most link to a dead site - and I have a more specific question anyways. I'm trying to convert the EBNF in the XPath spec to straight BNF so that ...
3
votes
2answers
148 views

Recursive data structures in haskell: prolog-like terms

I have a question about recursive data structures in Haskell (language that I'm currently trying to learn). I would like to encode in Haskell Prolog-like terms, but every solution I came up with has ...
3
votes
2answers
495 views

C# grammar in BNF or EBNF Parser generator for F#

I'm looking for BNF grammar for C# v4 that I can feed to fsyacc or if I can't find that an EBNF based parser generator that can output F#. EDIT: I'm not looking to write a parser for C# but an ...
3
votes
2answers
118 views

What goes in between { and } when writing BNF?

I'm having some trouble with BNF. I can't tell what seems to be the standard way of doing things (if there is one), and whether or not there are types like char or int or whatever already built in. ...
3
votes
1answer
1k views

Converting EBNF to BNF

It's been a few years since my computer-language class and so I've forgotten the finer points of BNF's and EBNF's and I don't have a textbook next to me. Specifically, I've forgotten how to convert an ...
3
votes
3answers
224 views

Is this context-free grammar a regular expression?

I have a grammar defined as follows: A -> aA*b | empty_string Is A a regular expression? I'm confused as to how to interpret a BNF grammar.
3
votes
4answers
1k views

Generate C++ code for BNF grammar

I have looked at the following software tools: Ragel ANTLR BNF Converter Boost::Spirit Coco/R YACC ANTLR seems the most straight-forward, however its documentation is lacking. Ragel looks ...
3
votes
2answers
283 views

Syntax (probably BNF) spec of VBA?

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 ...
3
votes
3answers
557 views

What is the BNF for a regex (in order to write a full or partial parser)

I am interested in parsing regexes (not to be confused with using regexes for parsing). Is there a BNF for Java 1.6 regexes (or other languages?) [NOTE: There is a similar older question which did ...
3
votes
3answers
491 views

Seeking an interactive utility for creating context free parser grammars

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 ...
2
votes
1answer
109 views

BNF to Lex to Parser in C [closed]

I am trying to learn the concepts and how to create a lexical analyser and parser in C from BNF notation, not EBNF. I would like to learn it in the language of C. Can anyone explain to me the parts ...
2
votes
1answer
101 views

Converting BNF to EBNF - Parentheses without recursion?

I need to convert the following grammar to EBNF: <assign> -> <id> = <expr> <id> -> A|B|C <expr> -> <expr> + <expr> |<expr> * <expr> ...
2
votes
1answer
53 views

Regular expression for a language tag (as defined by BCP47)

I need a regular expression for a language tag as defined by BCP 47. I know that the full BNF syntax is available at http://www.rfc-editor.org/rfc/bcp/bcp47.txt and that I could use it to write my ...
2
votes
2answers
73 views

Where does $4 come from here?

This is in the first rule of Perl: grammar : GRAMPROG { PL_parser->expect = XSTATE; } remember stmtseq { ...
2
votes
1answer
117 views

Recommended strategy for parsing ad-hoc if/else syntax in Java?

(Sorry, not sure if ad-hoc is the right word here ... open for a better suggestion) I'm trying to parse the Galaxy ToolConfig XML CLI tool wrapper format in a Java app, for replicating (in part) the ...
2
votes
3answers
246 views

What is a regular language?

I'm trying to understand the concept of languages levels (regular, context free, context sensitive, etc..). I can look this up easily, but all explanations I find are a load of symbols and talk about ...
2
votes
1answer
146 views

Can you modify this BNF grammer to always contain an odd number of dogs?

Can you modify this BNF grammer to always contain an odd number of dogs? <pets> ::= <pets> <pet> | <pet> <pet> ::= dog | cat Examples of 'pets': dog cat cat ...
2
votes
0answers
210 views

Grammar for Unix command line options

This is a homework question. I would like to write a simple parser for Unix command line options. First, I would like to define a grammar with BNF. Options = Option | Options, space, Option; Option = ...
2
votes
2answers
354 views

Question about EBNF notation and JSON

Recently I've been studying parsers and grammars and how they work. I was reading over the formal grammar for JSON at http://www.ietf.org/rfc/rfc4627.txt, which uses EBNF. I was pretty confident in ...
2
votes
3answers
196 views

Interpreting SQL's BNF

I'm looking at the syntax of SQL, specifically the character string literal. <character string literal> ::= [ <introducer> <character set specification> ] <quote> [ ...
2
votes
1answer
223 views

Full BNF grammar for HL7 2.5

all I was wondering if anyone had a full BNF for HL7 2.5? I am looking to compile this using the gold parser engine but would be happy to convert from EBNF or vendor specific BNF.
2
votes
2answers
234 views

BNF / EBNF for Turbo Pascal (preferably 5.5 or later, because of OOP)?

Does anyone of you know if the BNF or EBNF of Turbo Pascal is available somewhere (LEGALLY!!)?
2
votes
2answers
319 views

String Manipulation in C

I am helping my nephew for his C lab homework, it is a string manipulation assignment and applying Wang's algorithm. Here is the BNF representation for the input. <s> ::= <l> # <r> ...
2
votes
1answer
116 views

Is there a tool for generating a DSL parser that does not require a runtime for the resultant parser?

I'm doing a lot of work with a DSLs at the moment and was wondering if anyone knew of a tool that could generate a parser for my bnf specification that does not require a run-time library (pure java ...
2
votes
1answer
159 views

Generating test cases to abuse a BNF grammar automagically

I am wondering if there is a tool or technique which, given a BNF grammar, adjusts it randomly(but intelligently) and generates a stream of output for use in detecting cases that slip past the BNF ...
2
votes
3answers
759 views

BNF vs EBNF vs ABNF: which to choose?

I want to come up with a language syntax. I have read a bit about these three, and can't really see anything that one can do that another can't. Is there any reason to use one over another? Or is ...
2
votes
3answers
318 views

Grammar Syntax and Linguistics

I REALLY need a description of the english sentence structure in a way that can be translated by machine and is strictly rule based(no statistical stuff), it doesn't have to be a context-free grammar ...
2
votes
1answer
1k views

AS3 Grammar: Most accurate

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. What is the most accurate grammar available for ...
2
votes
3answers
591 views

Is there a BNF mode for Emacs?

I have to edit lots of grammar files in .bnf format. Is there a mode for this in Emacs? I've looked at CEDET's semantic package, and it seems that it USED to have a bnf-mode, but not any more. This ...
2
votes
1answer
966 views

Scala Parser Token Delimiter Problem

I'm trying to define a grammar for the commands below. object ParserWorkshop { def main(args: Array[String]) = { ChoiceParser("todo link todo to database") ChoiceParser("todo link ...

1 2 3