ActionScript 3 替换字符串中的单词

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 替换字符串中的单词相关的知识,希望对你有一定的参考价值。

var theContent:String = “I hate when content has words like, ‘damn’ in it”
theContent = theContent.split(“damn”).join(“darn”);
trace(theContent); // outputs: I hate when content has words like, ‘darn’ in it

以上是关于ActionScript 3 替换字符串中的单词的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 删除Array中的重复单词

ActionScript 3 替换actionscript中的换行符

ActionScript 3 搜索和替换字符串

ActionScript 3 将TextField限制为N个单词而不是N个字符

获取字符串中的#prefixed单词并将它们替换为可点击的链接

替换多个字符串中的多个单词