What is a few good ways to parse tokens with cassv
Jethro via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Sat Apr 15 14:28:41 PDT 2017
I have to parse a cassv in to tokens but want to keep group
element that use comma's and spaces as as single token:
e.g.,
a /*b, c*/, d
should be split
a
b, c
d
and not
a /*b, c*/
d
or
a
b
c
d
More information about the Digitalmars-d-learn
mailing list