返回模式在字符串中开始的索引(如果未找到,则返回 -1)。如果第三个参数为真,则搜索区分大小写,否则不区分大小写。
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)。如果第三个参数为真,则搜索区分大小写,否则不区分大小写。
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