Welcome to the Mythicsoft Q&A site for:

- Agent Ransack
- FileLocator Lite
- FileLocator Pro

Please feel free to ask any questions on these products or even answer other community member questions.

Useful Links:

- Contact Us
- Help Manuals
- Mythicsoft Home
0 votes

Is there a way to avoid both boolean and regular expressions and simply search for a literal string exactly as I enter it? For instance, while in Boolean mode I searched for:
return ""

and found all instances of the word 'return' were highlighted, as the following quote marks were considered to be boolean syntax. Now, this particular search I could run in regex mode, but I'd rather not have to think about what I might need to escape as a regex.

by (715 points)

1 Answer

0 votes

There is no separate 'Plain text' literal search type in Agent Ransack. Most of the time you can specify literal text in Boolean by enclosing the text in quotes, e.g.

"return getText()"

But if you want to search for quotes then you need to escape those, e.g.

"return \"\""

Quotes are the only characters that need escaping inside a quoted string.


If you don't want to bother with escaping quotes and really need a Plain Text option then you should consider FileLocator Pro which has more Expression Type options.

by (30.1k points)
...