RosettaCodeData/Task/Rot-13/Mathematica/rot-13.math

9 lines
160 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Rot13[s_] := StringReplace[
s,
# -> RotateLeft[#, 13] & @* CharacterRange @@ # &[
{"a", "z"}, {"A", "Z"}
] // Thread
]
Rot13["Hello World!"]
Rot13[%]