-2

パターンが文字列で始まるインデックスを返します (見つからない場合は -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
4

1 に答える 1

1

たぶん次のようなもの:

var str = "abAB12";
var i = str.indexOf("AB");
if (i < str.length / 2) {
  //stuff
} else {
  //other stuff
}
于 2013-11-07T06:54:48.093 に答える