Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I check if a text “begin with” substring in Actionscript 3 ??

Thanks a lot for help.

share|improve this question

1 Answer

up vote 6 down vote accepted

There is an indexOf method: documentation.

It returns the first index of where the given string appears in the string that is searched. If this is not equal to 0, it doesn't start with the string. You can make the following function yourself:

function startsWith(haystack:String, needle:String):boolean {
    return haystack.indexOf(needle) == 0;
}
share|improve this answer
Thanks a lot ;) – Bizboss May 3 '12 at 21:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.