在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个字符开始。