Wildcard match regular expressions

In queries, you can use the three wildcard match characters with the match query operator, as in the following example, ccm query "name match '*.java'"
Character Meaning
* Matches zero or more characters
? Matches any single character
\ Removes the special significance of the next character. You can use this character to match * or ? by entering\* or \?

Feedback