I'm trying to search for the text "names(" (without quotes) in a folder of code. I've tried "names(" but that returns no results where they should be results. Not sure how to deal with this.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Click on options, select Regular Expressions for your search string,

Then use this:

string\(

\( will escape your open paren.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.