在VB中,你可以使用IndexOf
方法來查找字符串中字符的位置。該方法接受一個字符作為參數,并返回字符在字符串中第一次出現的位置。以下是一個示例:
Dim str As String = "Hello, World!"
Dim ch As Char = "o"
Dim position As Integer = str.IndexOf(ch)
If position >= 0 Then
Console.WriteLine("Character '{0}' found at position {1}", ch, position)
Else
Console.WriteLine("Character '{0}' not found", ch)
End If
輸出結果將是:
Character 'o' found at position 4
請注意,IndexOf
方法返回的位置是從零開始的索引,如果字符不存在于字符串中,則返回-1。