Skip to content

Instantly share code, notes, and snippets.

@flying19880517
Created August 25, 2011 02:32
Show Gist options
  • Save flying19880517/1169835 to your computer and use it in GitHub Desktop.
Save flying19880517/1169835 to your computer and use it in GitHub Desktop.
ROT13加密
function rot13(s){
return s.replace(/[a-zA-Z]/g,function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);})
}
//document.write(rot13("Hello world"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment