Please let other users know how useful this tip is by rating it at the bottom of this page. Do you have a tip or code of your own you'd like to share? Submit it here.
using System;
using System.Windows.Forms;
class MainClass
{
public static void Main(string[] args)
{
string MainString = "String Manipulation";
string [] Split = MainString.Split(new Char [] {' '});
//SHOW RESULT
MessageBox.Show(Convert.ToString(Split[0]));
MessageBox.Show(Convert.ToString(Split[1]));
}
}This was first published in February 2004