VB String Examples: Find Substring within a String
Find Substring within a String Find the starting position of a substring within a string. (With strings, the first character is at position 1) Dim s As String s = "Chilkat Software" ' The following 4 lines are case-sensitive Print InStr(s, "Software") ' P...