-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
case insensitive string/char matches? #49
Comments
Hi @jottinger, there are |
Yeah, I found those. IMO, having an analog to |
Some history: when I initially started work on grampa I have taken over the naming mainly from parboiled1. Just have a look at this: https://www.javadoc.io/doc/org.parboiled/parboiled-java/latest/org/parboiled/BaseParser.html :-) I can change the names of these rule functions to be more precise, probably in the next major release (since this would be a breaking change). |
You could - or you could alias them over, which is what I'd do, personally.
It clouds the API a little bit (because methods are duplicated, even though
they'd defer to a central spot) but... honestly? Method slots are CHEAP.
…On Wed, Sep 11, 2024 at 5:20 PM Marco Perazzo ***@***.***> wrote:
Some history: when I initially started work on grampa I have taken over
the naming mainly from parboiled1. Just have a look at this:
https://www.javadoc.io/doc/org.parboiled/parboiled-java/latest/org/parboiled/BaseParser.html
:-)
I can change the names of these rule functions to be more precise,
probably in the next major release (since this would be a breaking change).
—
Reply to this email directly, view it on GitHub
<#49 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADSNGTWLWUMPSCPXHE2FTDZWCXYFAVCNFSM6AAAAABN5IU4EKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNBUG4ZDCNBVGQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
Joseph B. Ottinger
http://www.enigmastation.com <http://enigmastation.com>
*To the beautiful and the wise,*
* The mirror always lies.*
|
Yeah, introduce |
Is there a way to match such that "ThIS" and "this" both match
string("this")
?The text was updated successfully, but these errors were encountered: