从字符串中删除(修剪)空白区域
该 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"