String Manipulation in eVB

Hi Friends,

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
[584 byte] By [MRao] at [2007-11-17 19:08:22]
# 1 Re: String Manipulation in eVB
dim varDataArray as variant

varDataArray = split( m_sString, DELIM )
Like2Byte at 2007-11-9 12:22:45 >