我有一个输出给我一个假设是一个特殊字符的字符串,但我实际上得到了原始字符。
示例(让我们说它是"假的"制表符)
\ t
outputVar === String.fromCharCode(92) + String.fromCharCode(116) -> true
但我最终需要它成为ex(真正的制表符)
outputVar === String.fromCharCode(9)
我想要看起来像这样的东西,或者至少以这种方式起作用,因为这似乎是最动态的,而且代码最少
var newGoodOutput = String.fromCharCode(escapeCharCode) + badOutput.split("")[1]
我不想这样做,虽然我知道它会起作用
var dontWantThis = {
"\\t": "\t",
etc
};