📅  最后修改于: 2022-03-11 14:51:54.457000             🧑  作者: Mango
Dim MyString = "Hello world!"
'InStr returns the position of the first occurrence of the specified string within another.
'So checking if the number returned is higher then 0 means checking if its found
If InStr(MyString, "world") > 0 Then
'I exist!
End If