当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VB.NET GetChar()用法及代码示例


GetChar() 函数用于从指定索引的字符串中获取字符。

用法:

GetChar(str,index)

参数:

  • str:它是一个指定的字符串。
  • index: 它是从字符串中获取字符的索引。

返回值:

Val() 函数将返回指定索引上的字符串中的字符。

程序/源代码:

下面给出了演示 GetChar() 函数的源代码。给定的程序已成功编译并执行。

'VB.Net program to demonstrate the GetChar() function.

Module Module1

    Sub Main()
        Dim ch As Char
        Dim str1 As String = "Hello World"
        Dim str2 As String = "Hello India"
        Dim str3 As String = "Hello Delhi"

        ch = GetChar(str1, 5)
        Console.WriteLine("Char at index {0}:{1}", 5, ch)

        ch = GetChar(str2, 7)
        Console.WriteLine("Char at index {0}:{1}", 7, ch)

        ch = GetChar(str3, 8)
        Console.WriteLine("Char at index {0}:{1}", 8, ch)
    End Sub

End Module

输出:

Char at index 5:o
Char at index 7:I
Char at index 8:e
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含 Main() 方法的模块 Module1。在 Main() 方法中,我们创建了三个变量 str1、str2 和 str3,分别用 "Hello World"、"Hello India" 和 "Hello Delhi" 初始化。

ch = GetChar(str1, 5)
Console.WriteLine("Char at index {0}:{1}", 5, ch)

ch = GetChar(str2, 7)
Console.WriteLine("Char at index {0}:{1}", 7, ch)

ch = GetChar(str3, 8)
Console.WriteLine("Char at index {0}:{1}", 8, ch)

在上面的代码中,我们从指定索引上的指定字符串中获取字符,然后将它们打印在控制台屏幕上。





相关用法


注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the GetChar() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。