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#中的修剪函数[重复]的主要内容,如果未能解决你的问题,请参考以下文章

对 VBA 中的选定单元格执行修剪功能

c# 中的类和构造函数在不同程序集中的 c# 中的默认访问说明符是啥 [重复]

为通用 c# 集合中的每个值调用一个函数[重复]

vsize 函数不能与 PL/SQL 中的修剪函数一起使用

在 C# 中的类构造函数中调用异步方法 [重复]

JavaScript 中的 BigQuery 用户定义函数不会修剪分区