在VB中,可以使用InStr()
函數來查找字符串中的指定字符。下面是一個示例代碼:
Dim str As String
Dim charToFind As String
Dim position As Integer
str = "Hello, world!"
charToFind = "o"
position = InStr(str, charToFind)
If position > 0 Then
MsgBox "The character " & charToFind & " is found at position " & position
Else
MsgBox "The character " & charToFind & " is not found in the string"
End If
在此示例中,InStr()
函數會查找字符串str
中第一次出現字符charToFind
的位置,并將結果賦值給變量position
。如果找到了該字符,則會顯示一個消息框指示字符的位置;否則顯示一個消息框表示字符未找到。