String 对象的哪个方法可以寻找子字符串并返回该字符串?
A: match()
B: indexOf()
C: search()
D: concat
A: match()
B: indexOf()
C: search()
D: concat
举一反三
- String对象的哪个方法可以查找子字符串并返回该子字符串,如果检索不到则返回null 。( ) A: match() B: indexOf( ) C: search( ) D: concat( )
- String对象的哪个方法可以寻找子字符串并返回查找到的起始位置?( ) A: match() B: indexOf() C: search() D: concat()
- 在字符串中返回指定位置的字符,可以使用()方法。 A: charAt B: indexOf C: match D: search
- String对象方法indexOf(),返回指定的字符(或字符串)在字符串中的____(2字)。
- 使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。 A: 字符串"helloworld"中不包含G字符,indexOf返回0 B: 字符串"helloworld"中不包含G字符,indexOf返回null C: 字符串"helloworld"中不包含G字符,indexOf返回-1 D: 字符串"helloworld"中不包含G字符,indexOf返回1