If your goal is to find a string literal enclosed with double quotes,
starting with classpath and finishing with a colon then the following
regular expression is valid:
\"classpath.*:\"
You have to escape the quotes because otherwise everything between them is
treated as a literal (not regexp) and you have to use correct regexp syntax
for "any symbol zero or more times" wildcard
Dmitry
On Wed, Feb 27, 2008 at 1:27 PM, Matt <mbyr...@gmail.com> wrote:
Hi,
I haven't figured out how to search a literal string containing
special characters. An example of what I am trying to search for is
"classpath*:"
I've tried the following
classpath*:
classpath\*:
"classpath*:"
"classpath\*:"
None of these seem to return what I had hoped. Is there any way to do
this, or is it not possible?
Thanks,