function numericEntityToChar(s) {
//s="登入"
console.log(s);
var chars = String.fromCharCode(s.match(/^&#(\d+);$/)[1]);
// throws uncaught exception TypeError: cannot read property "1" from null.
console.log(chars);
return chars;
}
我从来没有与 REGEX 合作过,而这个也没有作为第一个帮助。在这方面需要帮助。