-
Notifications
You must be signed in to change notification settings - Fork 357
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
[RFE] Add the Ability to use Wildcard Characters when using the Search Function in the UI #9055
Comments
? 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 |
So I looked into it some more and you're right, I think 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 |
1 similar comment
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 |
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 returnbird
,bard
, etc.), any number of characters (charact*
would returncharacter
,characterization
,characters
, etc.), or ~ which lets you include the other wildcard characters in your search (Hello~?
would returnHello?
)The text was updated successfully, but these errors were encountered: