[RFE] Add the Ability to use Wildcard Characters when using the Search Function in the UI
DavidResende0 opened this issue · 7 comments
Currently, you can't use wildcard characters in the search bar which can make searching for groups of similar items difficult.
For example, there's currently no way to search for only the first two entries in this list of vms without all four of these vms appearing in the search results.
Adding the wildcard characters would let you search for any single character (b?rd
would return bird
, bard
, etc.), any number of characters (charact*
would return character
, characterization
, characters
, etc.), or ~ which lets you include the other wildcard characters in your search (Hello~?
would return Hello?
)
? And * are good and are fairly standard. Where does the ~ syntax come from?
? And * are good and are fairly standard. Where does the ~ syntax come from?
I was reading a bit about them and saw that ~ is sometimes used to show that you're trying to specifically search for the ? or * character as opposed to using them as a wildcard character.
Interesting - can you share a link to where you saw that? Only asking because usually I've seen \
as an escape character, but had never seen ~
Interesting - can you share a link to where you saw that? Only asking because usually I've seen
\
as an escape character, but had never seen~
So I looked into it some more and you're right, I think \
is used more often but Microsoft Access (https://support.microsoft.com/en-gb/office/examples-of-wildcard-characters-939e153f-bd30-47e4-a763-61897c87b3f4) and Apple (https://support.apple.com/en-ca/guide/functions/ffa4268b2bb0/web) seem to use ~
.
Don't think it matters too much either way, so we can just stick to \
.
This issue has been automatically marked as stale because it has not been updated for at least 3 months.
If you can still reproduce this issue on the current release or on master
, please reply with all of the information you have about it in order to keep the issue open.