如何根据字符代码替换文字?
答案 0 :(得分:0)
var charcode = 34; //example, put whatever here
var char = String.fromCharCode(charcode);
var string_to_edit = 'This is my string.';
var new string = string_to_edit.replace(char, 'whatever you are replacing with');
你可能必须使用一个模式来使用replace(),但我不这么认为。