标签: actionscript-3
如何检查字符串是否包含flash / Actionscript 3中的另一个字符串?
感谢您的帮助。
答案 0 :(得分:25)
var a = "hello world"; if(a.indexOf("world") >= 0){ //It contains the String! }