在VBS中什么函数能转换字符串数字为数值型数字??

2024-11-30 17:00:05
推荐回答(1个)
回答1:

str = "1231"
n = CINT(str)
l = CLNG(str)
d = CDBL(str)