【单选题】
()为非法的字符串常量。
①
<imgwidth="22"height="26"v:shapes="图片_x0020_119"src="http://wljy.whut.edu.cn/uploadfiles/word/cyy01-60.files/image122.png">
②
<imgwidth="25"height="24"v:shapes="图片_x0020_120"src="http://wljy.whut.edu.cn/uploadfiles/word/cyy01-60.files/image123.png">
③
<imgwidth="29"height="24"v:shapes="图片_x0020_121"src="http://wljy.whut.edu.cn/uploadfiles/word/cyy01-60.files/image124.png">
④
<imgwidth="52"height="29"v:shapes="图片_x0020_122"src="http://wljy.whut.edu.cn/uploadfiles/word/cyy01-60.files/image125.png">
【单选题】
下列关于常用的字符串函数及用法说法错误的是( )
①
Len(string),返回字符串string的长度
②
Trim(string),将字符串string前后的空格去掉
③
Split(strl,符号),根据符号将strl拆分成一维数组
④
Left(str,len),从右边取len个字符
【单选题】
在JavaScript中,把字符串“123”转换为整型值123的正确方法是( )。(选择一项)
①
var str=123 var num=(int)str;
②
var str=123 var num=str.parseInt(str);
③
var str=123 var num=parseInt(str);
④
var str=123 var num=Integer.parseInt(str);