VB编程 已知字符型变量ch中存放一个字符,判断该字符是字母、数字还是其它字符

2024-12-16 11:07:34
推荐回答(1个)
回答1:

可按ASCII码来对比。也可用字符串直接对比。

if asc(ch)>=48 and asc(ch)<=57 then
msgbox "数字"
elseif asc(lcase(ch))>=97 and asc(lcase(ch))<=122 then
msgbox "字母"
else
msgbox "其它"
end if

判断数字可以用 if isNumeric(ch) then msgbox "是数字"