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 ...

learn more… | top users | synonyms

0
votes
1answer
15 views

How to syntactically ignore a part of an expression in an Antlr BNF?

I would like to use Antlr to parse SQL table DDL statements. But I need only the column identifiers and column types. I do not care about any constraints and I would like to avoid to write the whole ...
0
votes
2answers
44 views

Spliting by regex or ebnf

I've got a string like: create Person +fname : String, +lname: String, -age:int; Is there any possibility to split it by regex or ebnf? I mean all the things like [a-zA-Z0-9] (things we don't know) ...
1
vote
1answer
41 views

EBNF grammar (ANTLR)

I've got a problem with EBNF grammar in ANTLRWorks: line 37: upper_lower_case : LOWER_CASE | UPPER_CASE ; line 42: CLASSNAME : UPPER_CASE (DIGITS | upper_lower_case )* ; line 51: UPPER_CASE ...
0
votes
0answers
19 views

Ambiguous grammar in parse phase

I want to build compiler to my own language, I wrote the grammar and finished lexer phase my question in parse phase this part of my EBNF grammer Statement → Block | Assignment | ...
0
votes
0answers
39 views

EBNF parser in php

I want to implement an EBNF parser in php without using any inbuilt php functions such as preg_match. I want to make four functions expr(),term(),factor() and digit() and a function to match tokens. ...
-1
votes
2answers
107 views

Descent recursive parser implementation in C++, based on EBNF Grammar

I have implemented descent recursive parser in C++ that is based on EBNF grammar and its pseudo-code. Here is the code: #include<iostream.h> #include<conio.h> #include<string.h> ...
0
votes
1answer
22 views

How would I normalize the following ANTLR grammar rules to eliminate left recursion?

I'd like to be able to treat: int(int, int) As a function type. How do I normalize this (stripped down) grammar? type : classOrInterfaceType | primitiveType | functionType; functionType : type '(' ...
0
votes
0answers
44 views

Shift-reduce conflict

I got this simple grammar: Productions program = stmts; stmts = {stmts1} stmts stmt | {stmts2} stmt; stmt = exprs; exprs = {exprs1} exprs expr | {exprs2} expr; ...
0
votes
0answers
13 views

Bigger-granularity Railroad diagram generator?

Is there an EBNF railroad generator that can create bigger chunks, not one diagram per grammar production? I've tried http://railroad.my28msec.com and it's quite good: can scrape EBNF grammars from ...
1
vote
3answers
66 views

POSIX sh EBNF grammar

Is there an existing POSIX sh grammar available or do I have to figure it out from the specification directly? Note I'm not so much interested in a pure sh; an extended but conformant sh is also more ...
1
vote
1answer
61 views

EBNF interpretation of the grammar

How can I interpret this as ENBF grammer? <assign>--> <id> = <expr> <id>--> A | B | C <expr> --> <expr> * <expr> <expr> --> <expr> ...
0
votes
1answer
35 views

EBNF whitespacing in meta identifiers

I looked at the ISO spec pdf for EBNF here (I couldn't find the official one except on the ISO website, where it appears to cost money), and I don't quite understand the whitespace. Does anyone know ...
0
votes
0answers
36 views

In Computer Science(especially in metalanguages using EBNF) , do the symbols -> and <- have specific meaning?

My apologies if this is not in SO's domain - it's a bit high-level/theoretical. I'm studying a custom Language Specification(called ACELandic if you interested). And it is based of of Extended ...
0
votes
3answers
116 views

EBNF grammar to ANTLR3?

I have this EBNF grammar for the Jass scripting language. What needs to be done to convert it to work with ANTLR 3.5? Furthermore, are there any sort of tools available to aid me in doing so? ...
0
votes
1answer
220 views

Converting EBNF to BNF basics

I'm not quite sure how to answer a question for my computer languages class. I am to convert the following statement from EBNF form to BNF form: EBNF: expr --> [-] term {+ term} I understand that ...
1
vote
2answers
310 views

How to convert BNF to EBNF

How can I convert this BNF to EBNF? <vardec> ::= var <vardeclist>; <vardeclist> ::= <varandtype> {;<varandtype>} <varandtype> ::= <ident> {,<ident>} : ...
2
votes
2answers
81 views

Is it possible to have a java program in eclipse to compile other languages than java?

I am currently working on a project which needs to compile files and give a diagnostic of the errors(syntax) found. I have been able to get the program working for .java files. Now I have to do the ...
-1
votes
1answer
117 views

How to generate a parser in java for a bnf notation? [closed]

I have Salesforce SOQL BNF notation.Want to validate a query string for syntax from my java code.How to create a parser class using this bnf notation? Is there any tool that generates a parser for a ...
1
vote
0answers
14 views

EBNF used in datatable.select(filter_condition)

Does anyone know what EBNF is used in Datatable.Select(filter_condition)? What I'm trying to achieve is to highlight statements similar to the SQL-WHERE part.
0
votes
1answer
34 views

How to deal with possible non-terminals?

Let's say I had an EBNF like this: <Expr> -> <Term> {( + | - ) <Term>} The {} brackets mean choose zero or more, so how would I know when I have just <Term> vs something ...
0
votes
1answer
37 views

Is there a xBNF parser to GObject classes

Does anyone know if there is an ABNF parser for GObject ? I want to describe GObject classes in ABNF and load them into a C program. I can't seem to find one around that can help bootstrap a ...
1
vote
1answer
52 views

ANTLRWorks debugging - the meaning of the different colors?

I'm using the debugging mode of ANTLRWorks to test my c-grammar. Debugging in ANTLRWorks is really great for better understanding but I have a problem in understanding the different colors of the ...
-4
votes
2answers
443 views

Program to check syntax errors and automatically provide solutions [closed]

I am required to develop a program that takes as input a text file (java source code) and checks the codes against the syntax rules for java. Following that, the program should underline the SYNTAX ...
1
vote
2answers
91 views

How to create an AST with ANTLR from a hierarchical key-value syntax

I've been looking at parsing a key-value data format with ANTLR. Pretty straightforward, but the keys represent a hierarchy. A simplified example of my input syntax: /a/b/c=2 /a/b/d/e=3 /a/b/d/f=4 ...
0
votes
0answers
18 views

If a rule has multiple RHSs can you decide which one to use by examining the next input or do you have to look ahead?

When dealing with parsers, if a rule has multiple RHSs can you decide which one to use by examining the next input or do you have to look ahead? I am confused on what you would look ahead to the next ...
0
votes
1answer
222 views

Convert EBNF to C# for compiler

I'm trying to learn to convert EBNF to C# code. Sample: int <ident> = <expr> I understand its saying "The variable (ident) of this data type (int) takes in (=) a whole number (expr), but ...
1
vote
1answer
213 views

Parsing a nuke script with simpleparse EBNF

I'm trying to pass a nuke script (foundry .nk file) with the following EBNF, but I appear to be catching too much in my 'content' literal. Also I'm pretty sure I'm making some major noob mistakes in ...
0
votes
0answers
38 views

Where can I find reference ENBF diagrams for REST APIs?

I'm looking at putting together an EBNF diagram for a RESTful API, but I'm struggling a little with the syntax, and the examples I've found so far are not helpful. I see lots of examples of finished ...
0
votes
0answers
81 views

Converting BNF to EBNF with empty string

I'm currently trying to convert a BNF grammar to EBNF. I understand most of what is involved, however I'm stuck on converting a single part of an expression (in the context of a bicycle...) Given: ...
0
votes
1answer
245 views

EBNF Grammar for list of words separated by a space

I am trying to understand how to use EBNF to define a formal grammar, in particular a sequence of words separated by a space, something like <non-terminal> [<word>[ <word>[ ...
0
votes
1answer
204 views

Is this BNF grammar LL(1)?

Can someone please confirm for me if the following BNF grammar is LL(1): S ::= A B B A A ::= a A ::= B ::= b B ::= where S is the start symbol and non terminals A and B can derive to epsilon. I ...
3
votes
2answers
166 views

In Context Free Grammar, how to define a pair of tags, like <abc>data</abc>?

The expected language is like: <hat>Nike</hat><car>Toyota</car>... The difficulty I have is how to specify to ensure that within a pair of tags, the start tag and the end ...
0
votes
0answers
61 views

(EBNF) grammar for RC (resource) files

Is there a place where I can find a formal grammar specification for WIN32 resource (.rc) files. I need to develop a parser for it (preferably in C#).
1
vote
0answers
367 views

BNF converting to EBNF

I am converting the following grammar from BNF to EBNF. <race> => go <dir_list> and stop <dir_list> => <dir> | <dir> then <dir_list> ...
1
vote
1answer
102 views

In the PowerShell grammar, what is the the `lvalueExpression` rule saying?

I was reviewing the PowerShell grammar posted here: http://www.manning.com/payette/AppCexcerpt.pdf (I don't think it has been updated since PowerShell v1, and there are some typos. So, it's clearly ...
3
votes
2answers
176 views

“Reverse” XSLT (language to parse and build an XML DOM)

I use XSLT to convert this: 1) <fruit> <apple count="2"/> <banana count="3"/> </fruit> into this: 2) Apple: 2 Banana: 3 Is there a library that serves as a parser ...
1
vote
1answer
90 views

How to define a permutation with EBNF?

I'm using EBNF to define a grammar. But I'm stuck because I need to define a permutation : I have a set of values that can be combined, but they have to be used only once and I don't care about the ...
4
votes
1answer
530 views

BNF grammar for left-associative operators

I have the following EBNF grammar for simple arithmetic expressions with left-associative operators: expression: term {+ term} term: factor {* factor} factor: number ( expression ) ...
0
votes
0answers
33 views

Grammar rewriting

Does someone know how to rewrite (expand) two token collections to all their permutations in (E)BNF; something like this: Char* Int* -> PERMUTATIONS(Char Int) e.g. {a, b, c} and {1,2} to {(a 1), (a ...
0
votes
1answer
291 views

EBNF to Bison - Reduce/Reduce error

i have to translate this EBNF to bison: <compound-statement> ::= begin [ <statement> ( ; <statement> )*] end <statement> ::= | <assignment> | <if-statement> | ...
1
vote
2answers
276 views

grammar of PDF 1.7. (BNF or variant)

I'm looking for a grammar of PDF 1.7 (BNF or variant) absolutely not googleable
2
votes
1answer
180 views

How to represent negation in BNF?

Does BNF or ABNF support negation. That is exclude certain members of the set? I did not see any such negation operator in its syntax. For example, suppose S is the set of all alphanumeric strings ...
2
votes
1answer
570 views

C float literals - define in EBNF

I am trying to figure out the correct way to write the EBNF description for a C float literal. This is the one problem that I am stuck on. I am not sure how to write it because isn't float just a ...
0
votes
0answers
110 views

Type-2 grammars .grm files (EBNF-alike) in C# for Windows Phone

i'm currently developing a Windows Phone app, which will be like that: i have some .grm files of Chomsky Type-2 grammars, which is a more expressive form of EBNF. They were once used by some kind of ...
0
votes
1answer
270 views

Extended BNF to BNF translation

I have this grammar in EBNF notation: expr -> expr (opt1 | opt2 | opt3) expr And i want to convert it to BNF to use it in Bison but i get shift/reduce errors in this: expr : expr opt1 expr | ...
2
votes
1answer
460 views

Extended Backus–Naur Form order of operations

I am creating a formal spec for a very simple rule language, very simple. I want to use EBNF as this is a standard but I can't figure out how to specify order of operations. Here is the specification ...
1
vote
1answer
450 views

Generate EBNF from ANTLR

Anybody know of a tool, that generates EBNF from ANTLR? ANTLR is already close to EBNF, but for documentation purpose I would like to have a clean EBNF description (without the Code in between). With ...
0
votes
1answer
80 views

productions for Sable CC parser generator

it looks pretty basic, but for the last half hour I couldnt find out why we say {zero} or {one} in the following productions what does the {} indicate? bit = {zero} zero | {one} one ...
1
vote
1answer
842 views

How to write a parse for EBNF syntax?

I receive a task to parse a text which conforms to EBNF syntax. Is there any tool/library I can use?
0
votes
0answers
135 views

Tool to generate complete language from a simple grammar? [closed]

If I had a bnf/ebnf, is there some program to display all or some of the strings or language?

1 2 3