Tagged Questions

EBNF stands for Extended Backus-Naur Form, or Extended Backus Normal Form. It is an extension to BNF and is used to describe the syntax of context-free grammars, such as programming languages, document formats, or communication protocols. It improves over BNF by providing operators to express optional, zero or more, and one or more occurrences of a term. This makes EBNF much more expressive and concise compared to BNF.

learn more… | top users | synonyms

7
votes
4answers
941 views

Parsing wikimedia markup - are EBNF-based parsers poorly suited?

I am attempting to parse (in Java) Wikimedia markup as found on Wikipedia. There are a number of existing packages out there for this task, but I have not found any to fit my needs particularly well. ...
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?
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
896 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
7answers
2k views

Grammar Writing Tools

I am trying to write a grammar in EBNF (barring a really good reason, it has to be EBNF) and am looking for a couple of utilities for it - if there's a GUI interface that can make one, that would be ...
4
votes
1answer
320 views

Implementing parser for markdown-like language

I have markup language which is similar to markdown and the one used by SO. Legacy parser was based on regexes and was complete nightmare to maintain, so I've come up with my own solution based on ...
4
votes
2answers
878 views

Scala Parser Combinators tricks for recursive bnf?

Im trying to match this syntax: pgm ::= exprs exprs ::= expr [; exprs] expr ::= ID | expr . [0-9]+ My scala packrat parser combinator looks like this: import ...
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
2answers
41 views

EBNF grammar definitions for PHP?

I am wondering if someone has compiled an EBNF for PHP somewhere. I found both this site and this site. Both seem like they are incomplete, though. This question is very similar, but it's a year old. ...
3
votes
2answers
493 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
1answer
121 views

Problem With an ANTLR Grammar

I wrote down the following statement in an ANTLR grammar: loopStatement : 'loop' (statement|exit)* 'end' 'loop' ';' ; If I understand correctly, (statement|exit)* means that I can have a ...
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
2answers
564 views

EBNF to fluent interface

I have recently had the need to write a fluent interface for C# that will essentially mirror SQL. Yes, I am aware of LINQ to SQL, but I'm interesting in getting "closer to the metal"--having ...
2
votes
2answers
113 views

Antlr left recursive

I'm trying to convert the postfix, infix and prefix rules from scala in EBNF form to ANTLR but am seeing an error relating to left-recursion on the infixExpression rule. The rules in question are: ...
2
votes
2answers
61 views

How to parse comments with EBNF grammars

When defining the grammar for a language parser, how do you deal with things like comments (eg /* .... */) that can occur at any point in the text? Building up your grammar from tags within tags ...
2
votes
1answer
64 views

pyparsing with ebnf and whitespaces

I'm using http://pyparsing.wikispaces.com/file/view/ebnf.py to convert my ebnf definition. ebnf def looks like this: TEST = A, SPACE, A; A = "AA" | "BB"; SPACE = " "; if I load the file and try ...
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
66 views

Zero-or-more/one-or-more modifiers and backtracking

I was adding zero-or-more and one-or-more modifiers to my PEG parser, which is straightforward since there is so little backtracking in PEG. As we never reconsider earlier iterations, a simple while() ...
2
votes
1answer
131 views

Forth language EBNF rule for an infinite loop or if statement

Is there an EBNF rule that describes a Forth infinite loop or if statement?
2
votes
1answer
351 views

Convert EBNF Grammar to Context-Free Grammar

I have to write a JavaCUP specification, and I've been given an EBNF grammar. However, I don't know how to convert between the two. I've heard the basic ideas, but I don't really understand what I ...
2
votes
2answers
351 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
1answer
127 views

why does 'a'..'z' in ANTLR match wildcards like $ or £

When I run the following grammer: test : WORD+; WORD : ('a'..'z')+; WS : ' '+ {$channel = HIDDEN;}; and I give the input "?test" why does antlr accept this as valid input? I thought the ('a'..'z') ...
2
votes
2answers
231 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
3answers
291 views

How to deal with overlapping character groups in different tokens in an EBNF grammar?

I'm using an LL(k) EBNF grammar to parse a character stream. I need three different types of tokens: CHARACTERS letter = 'A'..'Z' + 'a'..'z' . digit = "0123456789" . messageChar = ...
2
votes
3answers
756 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
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
1answer
962 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 ...
2
votes
1answer
565 views

How can I define an INI file grammar using the BNFC?

http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/ how should I write my labeled BNF to get BNFC to generate a INI parser for me? I have only gotten so far o__O! entrypoints File ; ...
2
votes
3answers
1k views

Is ANTLR an appropriate tool to serialize/deserialize a binary data format?

I need to read and write octet streams to send over various networks to communicate with smart electric meters. There is an ANSI standard, ANSI C12.19, that describes the binary data format. While ...
2
votes
3answers
2k views

Java EBNF?

Does anyone know of an accurate source for an (E)BNF for the Java language? Preferably, it would be from an authorative source, e.g. Sun. Thanks.
2
votes
1answer
953 views

Use existing languages in BNF with TinyPG?

How can I use these BNF grammars which are in GOLD meta-syntax (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? I believe ...
1
vote
1answer
64 views

EBNF syntax parser module (Python/Ruby)

Do you know of a syntax parser module (written in Ruby, Python, Javascript...) that, given a list of tokens and a EBNF-like grammar (passed as a simple string), returns the parsed tree? The closest ...
1
vote
2answers
54 views

“odd” expression in PL/0

Given the following EBNF grammar (found on wikipedia for PL/0), what is an expression preceded by the "ODD" keyword? I would like to implement the simple language as a small project but I can not ...
1
vote
1answer
149 views

Forth langauge EBNF rule for the while loop [closed]

Possible Duplicate: Forth language EBNF rule for an infinite loop or if statement Is there any EBNF rule that describes a Forth while loop (or any other loop)?
1
vote
2answers
174 views

Is my EBNF logic wrong here?

I'm using SimpleParse in a Python program in order to parse some rather simple linguistics. It should be able to parse the following sample text (each line separately): d6 (d4 + d8 + 5) + 6 ...
1
vote
2answers
133 views

How can I define an “else” block?

Here's what I'm trying: foreach_in.Rule = ToTerm("foreach") + "(" + VARIABLE + "in" + list_obj + ")"; foreach_as.Rule = ToTerm("foreach") + "(" + list_obj + "as" + VARIABLE + ")"; for_loop.Rule = ...
1
vote
1answer
148 views

EBNF / parboiled: how to translate regexp into PEG?

This is a question both specific to the parboiled parser framework, and to BNF/PEG in general. Let's say I have the fairly simple regular expression ^\\s*([A-Za-z_][A-Za-z_0-9]*)\\s*=\\s*(\\S+)\\s*$ ...
1
vote
1answer
47 views

Why would there be two operands in a EBNF sentence?

Have this EBNF grammar < calculation> -> <expr> = <expr> -> <term> (+ | -) <expr> | <term> <term> ...
1
vote
2answers
316 views

Parsing a code block with EBNF expression

I am using CocoR to generate a java-like scanner/parser: I'm having some troubles in creating a EBNF expression to match a codeblock: I'm assuming a code block is surrounded by two well-known ...
1
vote
1answer
907 views

ANTLR, how to convert BNF,EBNF data in ANTLR?

I have to generate parser of CSV data. Somehow I managed to write BNF, EBNF for CSV data but I don't know how to convert this into an ANTLR grammar (which is a parser generator). For example, in EBNF ...
1
vote
2answers
554 views

Is it easier to write a recursive-descent parser using an EBNF or a BNF?

I've got a BNF and EBNF for a grammar. The BNF is obviously more verbose. I have a fairly good idea as far as using the BNF to build a recursive-descent parser; there are many resources for this. I am ...
1
vote
3answers
279 views

Grammar for Java's annotations

Is there a BNF or EBNF that describes the grammar for Java's annotations?
1
vote
2answers
573 views

(E)BNF Parsing to XML

Is there any (E)BNF parser out there which is able to generate XML trees of the AST? Rephrasing: what is the quickest way to compile an (E)BNF defined language into some sort of XML? Bonus: Using ...
1
vote
2answers
398 views

Please help me define a language in EBNF

Give the EBNF specification for the language L that is made up of the chars a, b and c such that sentences in the language have the form L : sqsR -s is a string of any combination of the ...
0
votes
1answer
64 views

Converting BNF to EBNF

I need to know how to convert the next BNF to EBNF so it will help me understand more how they work S-> aI1I2 | epsilon I1-> I1e | b I2-> cd | cS note: epsilon means the empty set
0
votes
1answer
110 views

This cobol Grammar doesn't handle --9 picture

I'm using the grammar on this site in my javacc. It works fine apart from some picture statements. For example ----,---,---.99 or --9. http://mapage.noos.fr/~bpinon/cobol.jj It doesn't seem to ...
0
votes
1answer
40 views

Tips for writing good EBNF grammars

I'm writing some Extended Backus–Naur Form grammars for document parsing. There are lots of excellent guides for the syntax of these definitions, but very little online about how to design and ...
0
votes
1answer
86 views

Can anyone recommend a good EBNF online tutorial or book?

I'm embarking on writing a language (call me crazy). This will initially be for a test/proof of concept, but hopefully, it will be something I can "use in anger" later on. I'm looking for a good ...
0
votes
1answer
54 views

Explain BNF syntax for NID in RFC 2141

I am having trouble understanding some BNF syntax from RFC2141. The line is <NID> ::= <let-num> [ 1,31<let-num-hyp> ]. I think it means that <NID> is a symbol for a string, ...

1 2