Please help me,
I want to parse entire string delimiter "," and store each word in an Array
Used Split and StrParse function to parse it
Below are the code snippet used :
Dim strArray() As String
StrArray() = Split("NA,Ok,TL,JK",",")
This code gives an error
example-2
StrParse ("NA,Ok,TL,JK",",",3,Result)
In this,limitation is I cannot parse and get all the words
this gives only TL because item reference is 3
What should be the item reference number to get all the words.
Please provide me the code snippet.
#Rumba