Example of how to use PEG.js
问题 I'm playing around with PEG.js. I created some simple code that accepts inputs in the form [LettersNumbers]: abc123 hello98765 etc. This is the code: start = expression expression = text + number text = a: [a-z]+ {return a.join("");} number = b:[0-9]+ {return b.join("");} Here: Online version the code can be tested and the parser downloaded, additionally I downloaded peg.js itself. Unfortunately, the documentation is very sparse. I tried: <script src="peg-0.9.0.min.js"></script> <script src=