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
i realized the feature that i most use in anicode[1] is grep's word-boundaries feature to limit the amount of characters it matches…
$ anicode dog
matches all DOGRA characters[2]
whereas '\bdog\b' matches…
'\bdog\b'
$ anicode '\bdog\b' 1) ⺨ CJK RADICAL DOG 2) ⽝ KANGXI RADICAL DOG 3) 🌭 HOT DOG 4) 🐕 DOG 5) 🐶 DOG FACE
which, most of the time, is what i want.
That's the equivalent of passing -w to grep, so perhaps we should expose this option
-w
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i realized the feature that i most use in anicode[1] is grep's word-boundaries feature to limit the amount of characters it matches…
matches all DOGRA characters[2]
whereas
'\bdog\b'
matches…$ anicode '\bdog\b' 1) ⺨ CJK RADICAL DOG 2) ⽝ KANGXI RADICAL DOG 3) 🌭 HOT DOG 4) 🐕 DOG 5) 🐶 DOG FACE
which, most of the time, is what i want.
That's the equivalent of passing
-w
to grep, so perhaps we should expose this optionThe text was updated successfully, but these errors were encountered: