Val() 函数用于将数字字符串转换为整数。
用法:
Val(str)
参数:
- str:它是一个指定的数字字符串。
返回值:
Val() 函数将返回一个整数值。
程序/源代码:
下面给出了演示 Val() 函数的源代码。给定的程序已成功编译并执行。
'VB.Net program to demonstrate the Val() function.
Module Module1
Sub Main()
Dim result As Integer = 0
Dim n1 As String = "111"
Dim n2 As String = "222"
Dim n3 As String = "333"
result = Val(n1)
Console.WriteLine("Integer value:{0}", result)
result = Val(n2)
Console.WriteLine("Integer value:{0}", result)
result = Val(n3)
Console.WriteLine("Integer value:{0}", result)
End Sub
End Module
输出:
Integer value:111 Integer value:222 Integer value:333 Press any key to continue . . .
说明:
在上面的程序中,我们创建了一个包含 Main() 方法的模块 Module1。在 Main() 方法中,我们创建了四个变量 result,n1、n2 和 n3,它们初始化为 0、"111"、"222" 和 "333"。
result = Val(n1) Console.WriteLine("Integer value:{0}", result) result = Val(n2) Console.WriteLine("Integer value:{0}", result) result = Val(n3) Console.WriteLine("Integer value:{0}", result)
在上面的代码中,我们将数字字符串转换为整数值,然后将它们打印在控制台屏幕上。
相关用法
- VB.NET LTrim()用法及代码示例
- VB.NET DateTime FromBinary()用法及代码示例
- VB.NET CLng()用法及代码示例
- VB.NET RTrim()用法及代码示例
- VB.NET GetChar()用法及代码示例
- VB.NET Array Reverse()用法及代码示例
- VB.NET DateTime ToBinary()用法及代码示例
- VB.NET Array Resize()用法及代码示例
- VB.NET CInt()用法及代码示例
- VB.NET CULng()用法及代码示例
- VB.NET CDbl()用法及代码示例
- VB.NET LCase()用法及代码示例
- VB.NET Array ConstrainedCopy()用法及代码示例
- VB.NET Array Clear()用法及代码示例
- VB.NET Array LastIndexOf()用法及代码示例
- VB.NET String Join()用法及代码示例
- VB.NET String IsNullorWhitSpace()用法及代码示例
- VB.NET InStr()用法及代码示例
- VB.NET Array BinarySearch()用法及代码示例
- VB.NET CByte()用法及代码示例
注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the Val() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。