4 Wish List: StringSplit function

 
Hello

I think it will be usefull if there is a StringSplit function as an oposite to Concatenate...

Thank you

Ivo
 
Hello

I think it will be usefull if there is a StringSplit function as an oposite to Concatenate...

You can use StringSubstr().
 
Hi

Sure I could, but think for a moment:

If I have a

string s = "String_that_have_been_concatenated_previously";


it will be much easier to use StringSplit

string[] arStr = StringSplit(s, "_") 


which will return an array tokanizing the string instrad of

StringSubstr(), then StringSubstr() then StringSubstr() ...


Going some deeper - what if I do not know the length of the token - I have to use StringFind()...

Not useful at all, eh?

Regards

Ivo