String.indexOf()

可用性

Flash Player 5。

用法

my_str.indexOf(substring, [startIndex])

参数

substring 一个整数或字符串,指定要在 my_str 中搜索的子字符串。

startIndex 一个可选整数,指定要在 my_str 中搜索该子字符串的起始点。

返回

指定子字符串的第一个匹配项的位置,或 -1。

说明

方法;搜索字符串,并返回在调用字符串内 startIndex 处或之后找到的 substring 的第一个匹配项的位置。如果没有找到 substring,则此方法返回 -1。

另请参见

String.lastIndexOf()