-
Notifications
You must be signed in to change notification settings - Fork 34
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
Using search operators when searching for a character #93
Comments
This is something I've struggled with myself. I have some ideas for improvements: If one of the words have made a match, any other word should not make the same match. Meaning that if you search for Use quotes for exact match The search has actually recently changed and your searches must be exact matches. This means you can no longer search for Exclude words Like you suggested, someone should be able to search for Match whole words only I have no idea how one would go about formatting this in a search box. Best I can think of is writing |
FWIW
need to accept various symbols in search input |
Thanks, so you can enclose with to only match the whole word 👍. That is what I was trying to do with the double quotes like in a search engine. |
As someone has found, searching for pi does not return U+03C0 "GREEK SMALL LETTER PI" because there is no space after "LETTER PI". |
I was looking for the character for the math pi π (Greek Small Letter Pi, U+03C0, math constant. I was not sure if the greek letter was the one I wanted or if there was a specific one for math, like with Alef that has the ℵ Alef Symbol U+2135 and the א Hebrew Letter Alef U+05D0)
When searching for “pi” in the “find” tab, I was getting all the caPItal letters.
I tried adding double quotes “"” (Quotation Mark U+0022), but they were automatically removed.
Then I tried searching for “pi math” but I was getting all the MATHematical caPItals (and π is not in it because it does not belong to the mathematical set).
I tried to remove capitals from the search with “pi -capital” but there was no results.
“+pi” got the same thing than without the “+”.
I had to search for it in my browser, it defeats the use of UnicodePad.
Is there a way to filter results with operators like in a search engine?
If yes, how?
If no, could some be added?
The text was updated successfully, but these errors were encountered: