在VB中,Instr函數用于在字符串中查找一個子字符串,并返回子字符串在字符串中的位置。它的語法為:
Instr([start, ]string1, string2[, compare])
其中,start是可選參數,表示從哪個位置開始搜索;string1是要搜索的字符串;string2是要查找的子字符串;compare是可選參數,表示比較方式(1為大小寫不敏感,0為大小寫敏感)。
例如,可以使用以下代碼來查找子字符串"world"在字符串"Hello world"中的位置:
Dim position As Integer
position = Instr("Hello world", "world")
MsgBox position
在這個例子中,Instr函數會返回6,表示子字符串"world"在字符串"Hello world"中的位置是從第6個字符開始。