4

I need to find a cs file in file explorer that contains .load(" but I'm not sure how to search for a quotation mark in file explorer. Any ideas?

Scott
  • 41
  • 2

1 Answers1

1

Possible duplicate of Windows 7 search for file with a special character in the file name?

However, works for file content as well if you escape " a double quote by doubling it as follows:

~=".load("""

Unfortunately, I don't know how-to combine this literal search with wildcards.

JosefZ
  • 13,855