How do I write an AutoHotKey script to search and replace a clipboard string when an item is copied to the clipboard?

I'd like to create an AutoHotKey script such that when a string item is copied to the clipboard, a search and replace is done on the string, and the resulting string be copied to the clipboard. Ideally I'd like to happen automatically upon the event of the clipboard getting populated.

Pseudo-code for this might look like:

Assume for this example that the string to be put on the clipboard is "h:\my folder"

  1. Event of clipboard getting populated (ideally) or if necessary, I can manually trigger the action numerous ways
  2. "h:\" is replaced with "\myserver\my share\"
  3. "\myserver\my share\my folder" is copied to the clipboard

How can I do this?


Solution 1:

You can try this, it should work, or at least get you started, I didn't have a chance to test it out:

#Persistent
return
OnClipboardChange: 
StringReplace, clipboard, clipboard, h:\, \myserver\my share\, All
return

Tested and this works for me