在AS3中使用charcode替换文本

时间:2010-09-28 19:36:58

标签: flash actionscript-3

如何根据字符代码替换文字?

1 个答案:

答案 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(),但我不这么认为。