kach / nearley

📜🔜🌲 Simple, fast, powerful parser toolkit for JavaScript.
https://nearley.js.org
MIT License
3.57k stars 231 forks source link

Docs improvement: what do the colons mean? ":" #640

Open vladinator1000 opened 11 months ago

vladinator1000 commented 11 months ago

I was reading the vocabulary docs and saw this example

number -> [0-9]:+

What do the colons and plus mean?

DenverCoder1 commented 9 months ago

:+ is Kleene plus from Regular expressions meaning "appearing one or more times"

:* is Kleene star meaning "appearing zero or more times"

TekuConcept commented 3 months ago

:? - "appearing zero or one times"