< p > Trim()
从当前字符串中移除所有前导和尾随空白字符。
Trim(Char)
从当前字符串中移除一个字符的所有前导和尾随实例。
Trim(Char[])从当前字符串中移除数组中指定的一组字符的所有前导和尾随
请看下面我从微软文档页引用的例子。
char[] charsToTrim = { '*', ' ', '\''};
string banner = "*** Much Ado About Nothing ***";
string result = banner.Trim(charsToTrim);
Console.WriteLine("Trimmmed\n {0}\nto\n '{1}'", banner, result);
// The example displays the following output:
// Trimmmed
// *** Much Ado About Nothing ***
// to
// 'Much Ado About Nothing'