C#中的修剪函数[重复]
Posted
技术标签:
【中文标题】C#中的修剪函数[重复]【英文标题】:Trim function in C# [duplicate] 【发布时间】:2011-04-25 10:35:23 【问题描述】:可能重复:Removing all spaces in a string
嗨,
// Input string
string st = " This is an example string. ";
// Call Trim instance method.
// This returns a new string copy.
st = st.Trim();
// output
"This is an example string."
我该怎么做
"Thisisanexamplestring."
我想删除整个句子之间的所有空格。谢谢。
【问题讨论】:
【参考方案1】:Trim 只删除字符串开头和结尾的字符。您想替换所有出现的空格。为此使用String.Replace:
st = st.Replace(" ", string.Empty); // Thisisanexamplestring.
请注意,不需要 String.Trim,因为我们替换了所有空间实例。
【讨论】:
以上是关于C#中的修剪函数[重复]的主要内容,如果未能解决你的问题,请参考以下文章