S
sakitah
Hello Everyone,
Here's the problem (I'm using Visual c++ 6.0):
I have a string:
string1 = "This&is&life";
and i want to use the '&' as a seperator to help me parse this string
into 3 strings so that:
string2 = 'This'
string3 = 'is'
string4 = 'life'
thanx
Peace
Sakitah
Here's the problem (I'm using Visual c++ 6.0):
I have a string:
string1 = "This&is&life";
and i want to use the '&' as a seperator to help me parse this string
into 3 strings so that:
string2 = 'This'
string3 = 'is'
string4 = 'life'
thanx
Peace
Sakitah