请教一下,如何在用VBscript中将字符型转换成数值型
请教一下,如何在用VBscript中将字符型转换成数值型
参考答案:CInt ---Integer
CLng ---Long
CDbl ---Double
<script language=vbscript>
str="1.56"
num1=CInt(str)
num2=CLng(str)
num3=CDbl(str)
MsgBox num1
MsgBox num2
MsgBox num3
</script>
请教一下,如何在用VBscript中将字符型转换成数值型
参考答案:CInt ---Integer
CLng ---Long
CDbl ---Double
<script language=vbscript>
str="1.56"
num1=CInt(str)
num2=CLng(str)
num3=CDbl(str)
MsgBox num1
MsgBox num2
MsgBox num3
</script>