> On 12. Mar 2018, at 23:07, Pau Guillot <[email protected]> wrote: > > (#word asParser , #digit asParser plus flatten ==> [:node | node second]) > star parse: 'A123A123'. > -> #('123' '123')
(((#word asParser , #digit asParser plus flatten ==> [:node | node second]) plus) ==> [ :node | '' join: node]) parse: 'a123a123' => '123123' probably there is a nicer way. ;)
