Notepad ++ has macro photography, but macros cannot be recorded in any documented embedded language. You can record a macro that performs 70 search and replace operations. See this explanation . There is some information about "hacking" a macro language here .
Obviously, Notepad ++ is not intended for this task. Python solutions are fine, but Perl was originally intended for such things. Here is a single line. This is for Windows. On bash / Linux, replace double quotes with single quotes.
perl -n -e "tr/aqAQzwZW;: !@ #$%^&*()m\/</qaQAwzWZmM1234567890:?./;print"
It will do what @kreativitea's solution does (I used its translation strings), reading standard input and printing to standard output.
source share