我有一个类似blah blah ::e||1f1e6-1f1ea:: blah blah
的字符串,我想将其转换为blah blah blah blah
。
可以写成
\u{1f1e6}\u{1f1ea}
。
我使用了下面的代码,但它转换为\u{1f1e6}\u{1f1ea}
此字符串,而不是符号。
str.replace(/\:\:e\|\|(.*?)\:\:/g, function(x) { return x.replace(/-/g, '\}\\u\{'); }).replace(/\:\:e\|\|(.*?)\:\:/g, "\\u\{$1\}" );
答案 0 :(得分:4)
1f1e6
和1f1ea
是该字符的十六进制Unicode代码点。您可以使用String.fromCodePoint
,但是您需要使用PolyFill for IE:
text.replace(/::e\|\|([a-f0-9\-]+)::/g, function(match, text) {
var code_points = text.split('-').map(function(n) {
return parseInt(n, 16);
});
return String.fromCodePoint.apply(undefined, code_points);
});