【单选题】
把数值型转换为字符串型需要使用的函数是()。
【单选题】
把数值型转换为字符串型需要使用的函数是()。
【单选题】
对字符串str = welcome to china进行下列操作处理时,描述结果正确的是()
①
str.substring(1,5)返回值是elcom
③
str.indexOf(come,4)的返回值为4
④
str.toUpperCase( )的返回值是welcome to china
【单选题】
用于从字符串右边截取字符的函数是()。
【单选题】
下列关于常用的字符串函数及用法说法错误的是( )
①
Len(string),返回字符串string的长度
②
Trim(string),将字符串string前后的空格去掉
③
Split(strl,符号),根据符号将strl拆分成一维数组
④
Left(str,len),从右边取len个字符
【判断题】
字符处理函数strcpy(s1,s2)的功能是把字符串1接到字符串2的后面。
【单选题】
在JavaScript中,对字符串str=welcome to my home进行以下操作,描述正确的是( )。
①
str.substring(1,6)返回值是welco
④
str.toUpperCase( )的值为“Welcome To My Home”。