false
0
-1
以上答案都不对
第1题:
A、cd
B、de
C、d
D、e
第2题:
A、newint
B、newint[3][];
C、newint[][3];
D、以上答案都不对
第3题:
String对象的哪个方法可以寻找子字符串并返回该子字符串?()
第4题:
使用字符串对象的indexOf方法进行检索,如果没有发现,返回()。
第5题:
下面哪个方法能判断字符串中是否存在和指定正则表达式匹配的字符串;是则返回true,否则返回false:()
第6题:
Fork函数在父进程中的返回值是()。
第7题:
如果index方法没有在字符串中找到子串,则会返回-1。
第8题:
已知[X]补=00000000,则真值X=()。
第9题:
populateBean
populateMap
populateDataTypetoJson
wrappQueryResult
第10题:
boolean
int
String
Integer
第11题:
对
错
第12题:
RegExp 对象的 test()方法
RegExp 对象的 exec()方法
String 对象的 search()方法
String 对象的 match()方法
第13题:
A.false
B.0
C.-1
D.以上答案都不对
第14题:
下列方法中,不能用于定位字符串中的字符或子字符串的是()。
第15题:
使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。
第16题:
以下选项中,哪个是File类delete()方法返回值的类型?()
第17题:
在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。
第18题:
以下哪个SQL函数可用于返回特定字符串在较大字符串中的起始位置?()
第19题:
函数Sgn(3.1416)的返回值是()。
第20题:
charAt()方法是获取位于指定索引位置的字符
indexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置
charAt()方法的参数可以为一个或两个
indexOf()方法的参数为指定的索引值
第21题:
x.concat(foo)
x.add(foo)
x.combine(foo)
全都不对,JavaScript没有这样的方法
第22题:
match()
indexOf()
search()
concat()
第23题:
字符串helloworld中不包含G字符,indexOf返回0
字符串helloworld中不包含G字符,indexOf返回null
字符串helloworld中不包含G字符,indexOf返回-1
字符串helloworld中不包含G字符,indexOf返回1