Re: Re: searching for annotations with * or ?
Up one level
Re: Re: searching for annotations with * or ?
Posted by
eric
at
2010-09-06 18:21
Note that "*" and "?" wildcards are not regular expressions. As Han wrote, you could search for the regular expression "^GEST" to find things starting with "GEST". The regular expression counterparts for "*" and "?" are ".*" and ".", respectively. There should also be a topic about this in the help system.