Hi, example you can split a String into a String[] with
String[] arrString = strString.split(strDelimiter);
But how can i join this array back into a string without looping though every element, isn't there an inverse function of split, which is usually called join? Can i just use toString?
In which case how do i do a delimiter between the joined strings.
Thanks.