Skip to content

Instantly share code, notes, and snippets.

@AJABON
Last active November 13, 2015 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJABON/bfcfcd6d5fcf929bd57b to your computer and use it in GitHub Desktop.
Save AJABON/bfcfcd6d5fcf929bd57b to your computer and use it in GitHub Desktop.
test_プロンプトで入力したメタ文字を再解釈するやつ
//test_プロンプトで入力したメタ文字を再解釈するやつ
var pr = prompt("", ""); //"a\tb", "a\nb" など
alert(pr);
alert(convertToMetaChar(pr));
function convertToMetaChar (str) {
return eval("\"" + str + "\"");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment