BergenBman
Newcomer
- Joined
- Sep 24, 2002
- Messages
- 6
I can use the mid function to parse a string but when I try to use either the LEFT or Right functions to parse a string it doesn't recognize the functions
Dim str1, str2, str3, bigStr As String
bigStr = "Visual Basic .NET"
str1 = bigStr.SubString(0, 3)
str2 = bigStr.SubString(11)
str3 = bigStr.SubString(5,5)