Created
January 10, 2013 15:34
-
-
Save markstreich/4502902 to your computer and use it in GitHub Desktop.
AHK Clipboard Quote Escape
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F12:: | |
X:="""" | |
Y:="""""" | |
Z=%Clipboard% | |
StringReplace,Z,Z,%X%,%Y%,All | |
StringReplace,Z,Z,`n,,All | |
StringReplace,Z,Z,`r,,All | |
Clipboard=%Z% | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment