How do I find out what a specific character in a string is?
I'm trying to something like this:
-GitCode:If Character("This", CharacterPosition) = "\" Then
Do Stuff
End If
Printable View
How do I find out what a specific character in a string is?
I'm trying to something like this:
-GitCode:If Character("This", CharacterPosition) = "\" Then
Do Stuff
End If
If mid$("This", CharacterPosition, 1) = "\" Then
DoStuff
End If