我想你说的是empty或者Null吧,但这两个有区别。
empty关键字指用于指明未初始化的变量值,与NULL不同
Null关键字指用于指明变量包含的数据无效,与empty不同
实例:
dim p
'此时,
isempty(p) 为 true
isNull(p) 为 null
再例如,在在数据库里读出记录的一个的某个字段ppp值是 null ,该字段没有数据
p=rs("ppp")
此时 isNull(p)=true
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
如果a为空就……
if a="" then……
null = ""