tags:

views:

318

answers:

3

I like how i can do string [] stringArray = sz.split('.'); but is there a way to merge them back together? (stringArray.Merge(".");)

+8  A: 

String.Join

Miha Markic
+2  A: 
String.Join()
Mitch Wheat
+6  A: 
string mergedString = String.Join(" ", stringArray);
DrJokepu
+1 for the most complete answer
Paul Suart