${stra:-word }
${stra:=word }
${stra: +word }
${stra: ?word }
下列关于WORD的功能说法错误的是( )A.WORD可以进行拼写和语法检杏B.WORD在查找和替换字符串时,可以区分大小写,但目前不能区分全角半角C.在WORD中,能以不同的比例显示文档D.WORD可以自动保存文件,间隔时间由用户设定
点击查看答案
已知“stra\rb\r\nc\n”,则“str.splitlines”的返回结果是。()A、[a,b,c]B、[a\r,b\r\n,c\n]C、[a\r,b\r,c]D、[a\r,b,c]
在Shell变量引用操作符可实现字符串替换其中()用来测试如果变量stra存在且不为空,则返回为word,否则返回为空串A.${stra:-word}B.${stra:=word}C.${stra:+word}D.${stra:?word}
在Shell变量引用操作符可实现字符串替换其中()用来测试,如果变量stra存在,则返回为变量stra的值,否则输出为word,并退出当前脚本程序A.${stra-word}B.${stra=word}C.${stra:+word}D.${stra:?word}
在Shell变量引用操作符可实现模式匹配替换其中()用来的含义是若pattern匹配变量stra的头部,则删除最长匹配部分并返回剩余部分。A.${strapattern}B.${strapattern}C.${stra%pattern}D.${stra%%pattern}
在WORD 2003中,SIGN(x)的意义为“如果x为正则返回1,若x为负则返回-1”。此题为判断题(对,错)。
下列程序段的功能是实现“学生”表中“年龄”字段值加1,空白处应填入的程序代码是( )。Dim Str As String Str=" " Docmd.RunSQL StrA.年龄=年龄+1B.Update学生Set年龄=年龄+1C.Set年龄=年龄+1D.Edit学生年龄=年龄+1