I’m trying to make a macro that will allow me to enter search and replace terms into inputs and then use use them on clipboard text. I come across tiles with annoying non-space spaces (ex. annoying+file+name.txt) and want a quick way to scrub them out. My working logic goes:
- Prompt user for
Search_String
- Prompt user for
Replace_String
- Search clipboard for
%Variable%Search_String%
- And Replace with
%Variable%Replace_String%
- Paste
From what I can tell, you can’t search for a variable. Am I correct in this limitation? Is there a workaround?