String Manipulation in eVB
I am not too advanced in eVB development and have hit a road block.
I need to do the following string manipulation:
Suppose I have a string
Dim strResp as String
strResp = "xx,yyy,cc,,,dddd,f"
I want to separate the string into individual strings as you expect into 5 strings as
xx yyy cc dddd f
But many of the functions like strstr that are in VB are not defined in eVb (or so I think)
Can you please please help me by giving me ideas and directions.
Thank you.
Mrao

