We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chompUntil and chompUntilEndOr consume only position but not the last string. chompIf and chompWhile work as expected.
chompUntil
chompUntilEndOr
chompIf
chompWhile
SSCCE: https://ellie-app.com/3MJnNtV3KDFa1
main : Html msg main = text (Debug.toString (Parser.run chomper "foobar")) chomper : Parser (String, ( Int, Int )) chomper = succeed Tuple.pair |= getChompedString (chompUntil "bar") |= getPosition
exceted:
Ok ("foobar",(1,7))
actual:
Ok ("foo",(1,7))
Related: #2
The text was updated successfully, but these errors were encountered:
chompUntil...
String
Successfully merging a pull request may close this issue.
chompUntil
andchompUntilEndOr
consume only position but not the last string.chompIf
andchompWhile
work as expected.SSCCE: https://ellie-app.com/3MJnNtV3KDFa1
exceted:
actual:
Related: #2
The text was updated successfully, but these errors were encountered: