Possible Duplicate:
string split in c#
How to split Name string into First Name and Last Name based on Space between First Name and Last Name in string.
For examle:
Input string: “Visual Studio”
Required Output First Name: “Visual”
Last Name: “Studio”
How it can be done in C# ? Any help ?
Try this: