7
votes
4answers
309 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 …
3
votes
1answer
515 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 …
1
vote
3answers
358 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 d …
3
votes
3answers
228 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 curre …
1
vote
2answers
115 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 X …
0
votes
2answers
52 views
bnf/ebnf for xml schema
I'm looking for a BNF/EBNF of XML Schema.
I just found the one for XML (http://www.w3.org/TR/REC-xml or extracted at http://www.jelks.nu/XML/xmlebnf.html).
Well it's a starting po …
1
vote
1answer
114 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!
en …
1
vote
2answers
167 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 combinat …
3
votes
3answers
331 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 librar …
1
vote
4answers
499 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.
5
votes
6answers
812 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 …
2
votes
1answer
254 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 met …
