String对象的哪个方法可以寻找子字符串并返回查找到的起始位置?( )
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对象的哪个方法可以查找子字符串并返回该子字符串,如果检索不到则返回null 。( ) A: match() B: indexOf( ) C: search( ) D: concat( )
- String对象的哪个方法可以从开始位置执行一次匹配,如果没有匹配到结果,则返回 null,否则返回一个数组。( ) A: concat( ) B: search( ) C: indexOf( ) D: match( )
- 在字符串中返回指定位置的字符,可以使用()方法。 A: charAt B: indexOf C: match D: search
- 在字符串String中查找指定的字符,下面哪些方法可以实现() A: search(pattern:*):int B: match(pattern:*):Array C: indexOf(val:String,startIndex:Number=0):int D: contains(pattern:*):Boolean