比较两个值

时间:2009-09-01 13:24:23

标签: vbscript

我想比较两个作为字符串输入的值。请帮我比较一下这个值

strA = "25.03"
strB = "-25.02"

拉​​加

4 个答案:

答案 0 :(得分:5)

Cdbl(strA) < Cdbl(strB)

会将它们加成双重

答案 1 :(得分:3)

了解您想要进行哪种验证可能会有所帮助。

的字符串?

strA = "25.03"
strB = "-25.02"
If strA > strB Then
   'do whatever'
End If

数字不管标志吗?

strA = "25.03"
strB = "-25.02"
If Abs(strA) > Abs(strB) Then
   'do whatever'
End If

包括小数的数字?

strA = "25.03"
strB = "-25.02"
If cDbl(strA) > cDbl(strB) Then
   'do whatever'
End If

不包括小数的数字?

strA = "25.03"
strB = "-25.02"
If cInt(strA) > cInt(strB) Then
   'do whatever'
End If

更多信息和背景将为您提供所需的答案......

答案 2 :(得分:0)

你有一个函数会返回一个等价的字符串吗?

答案 3 :(得分:0)

您可以使用val函数将它们转换为值,然后您可以进行任何比较

valA = Val(strA)
valB = Val(strB)

If valA > valB Then
  ' Do whatever you need
End If