Answers for "vba find position of string in string"

VBA
0

vba search string position

'Position of "DOG" from 8th character, case insensitive
Debug.Print InStr(8, "My Dog is a dog", "DOG", vbTextCompare)   ' 13
Posted by: Guest on January-23-2021

Code answers related to "vba find position of string in string"

Code answers related to "VBA"

Browse Popular Code Answers by Language