從字串中刪除(修剪)空白區域

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"