Visual Basic IsNumeric 函数

定义和用法

IsNumeric 函数可返回指示指定的表达式是否可作为数字来计算的布尔值。如果作为数字来计算,则返回 True ,否则返回 False

注释如果表达式是日期表达式,则 IsNumeric 返回 False

语法
  1. IsNumeric(expression)
参数描述
expression必需的。表达式。

实例

  1. Module Module1
  2. Sub Main()
  3. Dim x
  4. x=10
  5. Console.WriteLine(IsNumeric(x))
  6. x=""
  7. Console.WriteLine(IsNumeric(x))
  8. x=Nothing
  9. Console.WriteLine(IsNumeric(x))
  10. x="10"
  11. Console.WriteLine(IsNumeric(x))
  12. x="911 Help"
  13. Console.WriteLine(IsNumeric(x))
  14. End Sub
  15. End Module

分别输出:

  1. True
  2. False
  3. False
  4. True
  5. False

分类导航