Wild Cards in Find and Replace

  • Thread starter Thread starter Jason Graf
  • Start date Start date
J

Jason Graf

Can I use # symbol in a search and replace as a wildcard?

I have an if statement I want to change to and equals statement but I don't
want to have to replace all 200+ entries manually.

TIA

Jon
 
Simple answer is no. You can use ? to replace a single character or * to
replace multiple characters.
Eg. H?L finds all 3-letter words beginning with H and ending with L; H*L
finds all words beginning with H and ending with L.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top