VBS 空值怎么表示?

C语言中 NULL表示空值那VBS中 空值用什么表示?
2024-11-30 08:07:13
推荐回答(4个)
回答1:

我想你说的是empty或者Null吧,但这两个有区别。

empty关键字指用于指明未初始化的变量值,与NULL不同
Null关键字指用于指明变量包含的数据无效,与empty不同
实例:
dim p
'此时,
isempty(p) 为 true
isNull(p) 为 null
再例如,在在数据库里读出记录的一个的某个字段ppp值是 null ,该字段没有数据
p=rs("ppp")
此时 isNull(p)=true

回答2:

a =inputbox("请输入一个字符!")
if a="" then
msgbox"输入的是空值!"
else
for i=0 to 255
if a=chr(i) then
if i>47 and i<58 then
msgbox "输入的是数字:"&a
elseif i>64 and i<91 then
msgbox "输入的是大写字母:"&a
elseif i>96 and i<123 then
msgbox "输入的是小写字母:"&a
else
msgbox "输入的是其他字符:"&a
end if
end if
next
end if

回答3:

如果a为空就……
if a="" then……

回答4:

null = ""