Hi all,
I am new in VB. My problem is: I have a String type variable with value. I want to get all the words from this string. Such as:
Dim s As String
Dim str() As String
s = "There Is a-tiger"
I want to see: str(0)=There str(1)=Is str(2)=a str(3)=tiger
How is is possible? Just please give me idea or tips about that, thanks.
I am new in VB. My problem is: I have a String type variable with value. I want to get all the words from this string. Such as:
Dim s As String
Dim str() As String
s = "There Is a-tiger"
I want to see: str(0)=There str(1)=Is str(2)=a str(3)=tiger
How is is possible? Just please give me idea or tips about that, thanks.
Comment