I want to parse
'This,is,an,example,text'
like in findTokens
'This,is,an,example,text' findTokens: $,
an OrderedCollection('This' 'is' 'an' 'example' 'text')
but cannot figure out how to do it with PetitParser, delimitedBy: and separatedBy: didn't helped me I tried
( #any asParser delimitedBy: $, asParser ) plus flatten parse: 'This,is,an,example,text'
but obviously not worked