As part of a larger parser, I am writing a rule to match strings like the following using parboiled2:
Italiana Relè
I would like to use something simple like the following:
CharPredicate.Printable
But the parser is failing with an org.parboiled2.ParseError
because of the unicode character at the end of the string.
Is there a simple option that I'm not aware of for matching printable unicode characters?