我要解析
'This,is,an,example,text'
就像在 findTokens
'This,is,an,example,text' findTokens: $,
an OrderedCollection('This' 'is' 'an' 'example' 'text')
但无法弄清楚如何使用 PetitParser、delimitedBy: 和 separatorBy: 并没有帮助我我试过
( #any asParser delimitedBy: $, asParser ) plus flatten parse: 'This,is,an,example,text'
但显然没有奏效