请问小程序中&#开头的字符编码如何解析成字符
有些文字从后台获取过来是类似 中国 的,在小程序中如何解析成字符
4 回复
var hahaha = '中 哈哈哈哈哈😄哈哈😄' ; var text = hahaha.replace(/& #.{5,6};/g,function(res){ res = res.substring(2, res.length-1); if (res.indexOf( 'x' ) == 0) { res = res.substring(1); return String.fromCodePoint(parseInt(res, 16)); } return String.fromCodePoint(parseInt(res, 10)); }); |