从字符串中删除(修剪)空白区域

System.String.Trim 方法可以用于去除从字符串中的所有前导和尾随空白字符:

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

此外:

子字符串提取字符串的一部分

System.String.Substring 方法可以用于提取字符串的一部分。

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

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