C# 中的修剪函数
可能的重复:
删除字符串中的所有空格
嗨,
// 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."
我想要的删除整个句子之间的所有空格。谢谢。
Possible Duplicate:
Removing all spaces in a string
Hi,
// 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."
How can I out put
"Thisisanexamplestring."
I want to remove all the blanks between the whole sentence. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Trim 只删除字符串开头和结尾的字符。您想要替换所有出现的空格。为此,请使用 String.Replace
: String.Trim 是不需要的,因为我们替换了所有的空间实例。
Trim does only remove characters at the start and end of a string. You want to replace all occurrences of space. Use String.Replace for this:
Note that String.Trim is not needed since we replace all instances of space.