Swap The Characters by mitchs

#!ruby -na
a,*b=$F
b.map{|x|a.tr!'\\'+x,'\\'+x.reverse}
puts a

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page