ES6: Bad character escape sequence creating ASCII string

亡梦爱人 提交于 2019-12-17 17:08:08

问题


Here's my code:

let padded = "03";
ascii = `\u00${padded}`;

However, I receive Bad character escape sequence from Babel. I'm trying to end up with:

\u0003

in the ascii variable. What am I doing wrong?

EDIT:

Ended up with ascii = (eval('"\\u00' + padded + '"'));


回答1:


What am I doing wrong?

A unicode escape sequence is basically atomic. You cannot really build one dynamically. Template literals basically perform string concatenation, so your code is equivalent to

'\00' + padded

It should be obvious now why you get that error. If you want to get the corresponding unicode character you can instead use String.fromCodePoint or String.fromCharCode:

String.fromCodePoint(3)

If you want a string that literally contains the character sequence \u0003, then you just need to escape the escape character to produce a literal backslash:

`\\u00${padded}`


来源:https://stackoverflow.com/questions/33873982/es6-bad-character-escape-sequence-creating-ascii-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!