SyntaxFix
Write A Post
Hire A Developer
Questions
The String class exposes some methods to enable this, such as IndexOf and LastIndexOf, so that you may do this:
String
IndexOf
LastIndexOf
Dim myText = "abcde" Dim dIndex = myText.IndexOf("d") If (dIndex > -1) Then End If