indexOf() 检索字符串
程序员文章站
2023-12-22 20:05:04
...
indexOf() 返回某个指定的字符串值在字符串中[color=red]首次[/color]出现的位置。
1.头到尾地检索字符串,看是否含有子串
2.字符位置是从 0 开始的。
3.indexOf() 方法对[color=red]大小写敏感[/color]!
4.要检索的字符串值[color=blue]没有[/color]出现,则该方法[color=blue]返回 -1[/color]
1.头到尾地检索字符串,看是否含有子串
2.字符位置是从 0 开始的。
3.indexOf() 方法对[color=red]大小写敏感[/color]!
4.要检索的字符串值[color=blue]没有[/color]出现,则该方法[color=blue]返回 -1[/color]
var str="Hello,WJY!I'm WJY not Wjy!";
alert(str.indexOf("Hello"));//"0"
alert(str.indexOf("WJY"));//"6"
alert(str.indexOf("wjy"));//"-1"