Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查 Actionscript 3 中的文本是否以“开头”子字符串?
非常感谢您的帮助。
有一个 indexOf 方法:文档。
它返回给定字符串在搜索字符串中出现的位置的第一个索引。如果这不等于0,则它不以字符串开头。您可以自己制作以下功能:
0
function startsWith(haystack:String, needle:String):boolean { return haystack.indexOf(needle) == 0; }