下列方法中,不能用于定位字符串中的字符或子字符串的是()。
A: SubString
B: IndexOfAny
C: LastIndexOf
D: IndexOf
A: SubString
B: IndexOfAny
C: LastIndexOf
D: IndexOf
举一反三
- 在字符串中查找一个字符或一个子串第一次出现的位置可以使用()方法。 A: indexOf方法 B: lastIndexOf方法 C: subString方法 D: 以上都不对
- 下列方法中,不能用于定位字符串中的字符或子字符串的是______
- 一个字符串中任意个连续字符成为该串的子串。
- JavaScript中的String对象通过__方法获取第一次出现子字符串的字符位置() A: indexOf B: lastIndexOf C: charAt D: substr
- 使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。 A: 字符串"helloworld"中不包含G字符,indexOf返回0 B: 字符串"helloworld"中不包含G字符,indexOf返回null C: 字符串"helloworld"中不包含G字符,indexOf返回-1 D: 字符串"helloworld"中不包含G字符,indexOf返回1