Parse a string
Parse a string
Rate Parse a string
(1(1 Vote))
String1 = "John User"
strPos = InStr(String1, " ")
One = Mid(String1, 1, strPos - 1)
Two = Mid(String1, strPos + 1)
MsgBox One
MsgBox Two
End Sub
Parse a string Comments
No comments yet — be the first to post one!
Post a Comment