String Analsys
hi
fine here,
How can i make this in VB6 ?
dim NewWord as string, W1 as String, W2 as String, W3 as string
NewWord = "strong|network|lineup"
'returns >
W1 = strong
W2 = network
W3 = lineup
thanks all of ur team.
[283 byte] By [
LiveSys] at [2007-11-11 10:24:40]

# 1 Re: String Analsys
You cannot do exactly that in VB6, but you can do this:
Dim NewWord As String
Dim Words() As String
NewWord = "strong|network|lineup"
Words = Split(NewWord, "|")
' returns:
' Words(0) = "strong"
' Words(1) = "network"
' Words(2) = "lineup"