13 Mar
2016
13 Mar
'16
11:48 a.m.
Hello, I don't fully understand skip parser concepts. I would like to parse key-value list in bash style, like the following: KEY1=VAL1 KEY2="V A L 2" The pairs are separated by one or more space symbols. What is the supposed way to parse such constructions? 1. -(pair % (+space)) 2. *pair with skip=space 3. anything else?