The [System.String.Trim](<https://msdn.microsoft.com/en-us/library/t97s7bs3(v=vs.110).aspx>) method can be used to remove all leading and trailing white-space characters from a string:

string s = "     String with spaces at both ends      ";
s = s.Trim(); // s = "String with spaces at both ends"

In addition:

Substring to extract part of a string.

The [System.String.Substring](<https://msdn.microsoft.com/en-us/library/hxthx5h6(v=vs.110).aspx>) method can be used to extract a portion of the string.

string s ="A portion of word that is retained";
s=str.Substring(26);  //s="retained"

s1 = s.Substring(0,5);  //s="A por"