PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting.

learn more… | top users | synonyms

0
votes
0answers
15 views

How can I write a simple pegjs grammar for this output

I just want to convert string to json format example input is 120JANBKKSIN0900#BA **Output format** { "rootCommand": "AN", "itinerary": [ { "date": { "day": 20, ...
0
votes
2answers
31 views

PEGjs: Fallback (backtrack?) to string if floating point rule fail

I have an atom rule that tries to parse everything as either a number or a quoted string first, if that fails, then treat the thing as a string. Everything parses fine except one particular case that ...
3
votes
1answer
77 views

Parsing boolean expression without left hand recursion

I'm trying to match this f(some_thing) == 'something else' f(some_thing) is a function call, which is an expression == is a boolean operator 'something else' is a string, which also is an ...
0
votes
3answers
153 views

How can I write a simple pegjs grammar for this text file?

I just want to segment this text file into lines and to classify the lines. If the line starts with "Qty" then the next lines are the order items until the line starts with "GST". If the line starts ...
1
vote
0answers
118 views

Generate TextMate language grammar from PEG.js grammar

Is there a tool that translates a PEG.js grammar to a TextMate grammar? I am building my own language and would like to have syntax highlighting for it in my preferred editor, TextMate. The grammar ...
1
vote
1answer
110 views

How do I DRY this PEGjs rule?

the following works just fine for what I'm trying to do, but it's obviously very repetitive. It should match the following examples: #id.class1.class2 attr="asdsa" .class1.class2 attr="asdsad" ...
1
vote
1answer
234 views

Eliminate Left Recursion on this PEG.js grammar

(Note: I've read other questions like this, but I haven't been able to figure this out). I wrote this grammar: start = call ident = [a-z]+ spaces = [ ]+ call = f:ident spaces g:(call / ident) { ...
0
votes
1answer
103 views

How to transform a simple grammar into something which works in PEG.js (expected “a” but “a” found)

I've just started playing with PEG.js and have a problem with a grammar (vastly simplified for debugging): start = presingle single / preplural plural presingle = "a" / "b" preplural = ...
3
votes
1answer
152 views

How do I parse this with peg grammar?

I'm trying to make a parser using pegjs. I need to parse something like: blah blah START Lorem ipsum dolor sit amet, consectetur adipiscing elit END foo bar etc. I have trouble writing the rule ...
2
votes
1answer
103 views

How to build PEG.js 0.7.0 parser using Rhino (JSE 6 ScriptEngine API)

I've been building parsers using a Maven Plugin (i.e. calling PEG.js from Java code) successfully using PEG.js version 0.6.1, but now while trying to upgrade to the new version, it's failing with the ...
2
votes
3answers
353 views

Using PEG Parser for BBCode Parsing: pegjs or … what?

I have a bbcode -> html converter that responds to the change event in a textarea. Currently, this is done using a series of regular expressions, and there are a number of pathological cases. I've ...