ROT13 in Javascript
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
function rot13(str) { // LBH QVQ VG! | |
var re = new RegExp("[a-z]", "i"); | |
var min = 'A'.charCodeAt(0); | |
var max = 'Z'.charCodeAt(0); | |
var factor = 13; | |
var result = ""; | |
str = str.toUpperCase(); | |
for (var i=0; i<str.length; i++) { | |
result += (re.test(str[i]) ? | |
String.fromCharCode((str.charCodeAt(i) - min + factor) % (max-min+1) + min) : str[i]); | |
} | |
return result; | |
} |
rot13 its mean Obfuscate string by adding 13 alphabet ..
idk how to explain it but its something like this :
exp : Rot2 => "a" will be "c" in the string
"Smart" will be "Uocv" someting like this :D
Hi @smartxd3 I know what rotN means.
My question was for @ATmel91 after his comments on December 2020:
how to confuse people: rot12
Because although it wouldn't really be a better way to encrypt messages, it would still confuse people when rot13 doesn't work because that will most likely be their first guess
that i didn't understand. I don't know why they don't appear here anymore.
too bad I haven't learned regex yet
thanks nice
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ATmel91 care to explain?