crutledge
06-05-2010, 03:48 PM
The wild card search and replace is very handy, except when searching for the wild card characters ( "?' and "*") themselves. There must be an escape character to allow such searches.
Would one of you folks enlighten me? :2thumbsup
Valloric
06-05-2010, 03:53 PM
I don't think there's an escape character for wildcard matching, but using a character group surely provides the same effect.
"aa[?]" would match against "aa?" but not "aaa". Same thing goes for "
".
crutledge
06-05-2010, 04:19 PM
I don't think there's an escape character for wildcard matching, but using a character group surely provides the same effect.
"aa[?]" would match against "aa?" but not "aaa". Same thing goes for "
".
Thank you, sir. I'll give it a try.