as3使用split删除第一个单词

时间:2014-02-12 07:44:48

标签: actionscript-3 split

我正在尝试使用拆分但不能删除第一个单词“Wednesday”

Wednesday: Thundery Shower 

这里有什么帮助吗?

1 个答案:

答案 0 :(得分:3)

假设你有一个像这样的字符串变量

var text:String = "Wednesday: Thundery Shower";

案例1:如果你想要总是替换第一个单词,那么为什么不只是找到第一个空格索引并清理该字符串直到该点。

var firstSpace:int = text.indexOf(" ");

// if we have a space then remove first word.
if(firstSpace != -1)
    text = text.substr(firstSpace+1);

案例2: 如果你只想删除“星期三:”这个词,那么只需:

text = text.replace("Wednesday:", "");

请务必查看ActionScript手册和实时文档,其中始终有样本。