string str = "JOHN F KENNDY"; string[] st = str.Split(' '); string result = st[2] + " " + st[0] + " " + st[1]; MessageBox.Show(result);
Regards, Lakshmi Naraayanan.S http://dotnettechrocks.blogspot.in/ http://abaprocker.blogspot.com/
Login to post response