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