如何定位字符串的特定部分?

时间:2013-11-07 06:51:30

标签: javascript string

返回模式以字符串开头的索引(如果未找到则返回-1)。 如果第3个参数为true,则搜索区分大小写,否则不区分大小写。

Examples
index("abAB12","AB",true) returns 2 but index("abAB12","AB",false) returns 0
index("abAB12","BA",true) returns -1 and index("abAB12","BA",false) returns 1

1 个答案:

答案 0 :(得分:1)

可能是这样的:

var str = "abAB12";
var i = str.indexOf("AB");
if (i < str.length / 2) {
  //stuff
} else {
  //other stuff
}