-
I saw that zeroOrMore https://parsica-php.github.io/docs/api/combinators#zeroormore is deprecated ... and now im wondering how to parse a qouted c-style string: like in the json demo: Line 187 in e090424 usually im using this regex but it relies also on some kind of zeroOrMore.
|
Beta Was this translation helpful? Give feedback.
Answered by
mhsdesign
Nov 21, 2021
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mhsdesign
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
atLeastOne()->optional()
oroptional(atLeastOne())
works ;)