I'm trying to find instances of the string "%/%" in a project, but those % seem to be treated like a wildcard. I tried escaping with \ but that doesn't work. How can I find instances of that character?
Have you tried doubling them?
I don't think you can, unfortunately. *
and %
are unconditionally treated as wildcards and I don't see any way to escape.
1 Like
I have, no luck.
1 Like