從字串中刪除(修剪)空白區域
該 System.String.Trim
方法可以用於去除從字串中的所有前導和尾隨空白字元:
string s = " String with spaces at both ends ";
s = s.Trim(); // s = "String with spaces at both ends"
此外:
-
要僅從字串的開頭刪除空格,請使用:
System.String.TrimStart
-
要僅從字串末尾刪除空格,請使用:
System.String.TrimEnd
子字串提取字串的一部分
該 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"