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
The Documentation for String Parsing is not extensive. It is easy enough to use the until token for simple tasks like:
terminal ID: '"' -> '"' ; to match "foo"
terminal ID: '"' -> '"' ;
"foo"
However when your input string has the need for escapes in it like "f\"oo!"
"f\"oo!"
Then the documentation is not providing obvious clues as to how to match "f\"oo" instead of "f\" + error.
"f\"oo"
"f\"
What would also be good is examples of how to match and extract the following:
An input of "bar" to match bar instead of "bar" (including the ").
"bar"
bar
"
This would help with designing & translating languages with string processing capabilities.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Documentation for String Parsing is not extensive. It is easy enough to use the until token for simple tasks like:
terminal ID: '"' -> '"' ;
to match"foo"
However when your input string has the need for escapes in it like
"f\"oo!"
Then the documentation is not providing obvious clues as to how to match
"f\"oo"
instead of"f\"
+ error.What would also be good is examples of how to match and extract the following:
An input of
"bar"
to matchbar
instead of"bar"
(including the"
).This would help with designing & translating languages with string processing capabilities.
The text was updated successfully, but these errors were encountered: