search for $c only

Tool for Search and Replace across multiple files.
Post Reply
cretaceous
Posts: 2
Joined: Thu Oct 17, 2013 11:57 am

search for $c only

Post by cretaceous »

I'm searching PHP files and I want to look for string literal $c
I don't want to get results for anything else like $cabc etc

How do I do that?
User avatar
DigitalVolcano
Site Admin
Posts: 1731
Joined: Thu Jun 09, 2011 10:04 am

Re: search for $c only

Post by DigitalVolcano »

You can use regular expression mode:

RegEx: \$c\b

\$ = escaped dollar sign
\b = word boundary
cretaceous
Posts: 2
Joined: Thu Oct 17, 2013 11:57 am

Re: search for $c only

Post by cretaceous »

aha.. thanks!
TextCrawler looks very useful
Post Reply