Help with searching for % signs

I am trying to search for cards using image source (img src=“name.type”). Some image sources have % signs in their name. I have tried a bunch of regex methods for searching for % signs as text but none have worked.

Any recommendations for searching for an image source such as below:
img src=“Screen%20Shot%202022-03-08%20at%2010.14.43.jpg”

The cause of the issue is that image references such as Screen%20Shot%202022-03-08%20at%2010.14.43.jpg are actually stored as Screen Shot 2022-03-08 at 10.14.43.jpg, despite what the editor shows. For your example, you have to substitute %20 with a space.
Filenames may contain other symbols. Some examples are listed here: Percent-encoding - MDN Web Docs Glossary: Definitions of Web-related terms | MDN

2 Likes

Thank you! Also thanks for all your help I feel like you reply to all the requests. True hero

1 Like