View Single Post
  #1 (permalink)  
Old 07-31-2007, 10:27 PM
cachi cachi is offline
Member
 
Join Date: Jul 2007
Posts: 40
cachi is on a distinguished road
Can i just use toString?
Hi, example you can split a String into a String[] with
Code:
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.
Reply With Quote
Sponsored Links