March 13, 2018
5:16 a.m.
On 12. Mar 2018, at 23:07, Pau Guillot <emailpauguillotpuig@gmail.com> 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. ;)