代码之家  ›  专栏  ›  技术社区  ›  Daniel

在AS3中使用charcode替换文本

  •  0
  • Daniel  · 技术社区  · 14 年前

    如何替换基于字符码的文本?

    1 回复  |  直到 14 年前
        1
  •  0
  •   Brent    14 年前
    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');