迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

C# 有效地删除字符串中的所有空格

作者:迹忆客 最近更新:2024/01/16 浏览次数:

在 C# 中,有多种方法可以有效地删除字符串中的所有空格。在本文中,我们将讨论各种方法来删除字符串中的所有空格。


C# 使用 Regex.Replace() 方法有效地删除字符串中的所有空格

正则表达式是 C# 中最有效的模式匹配功能。每个操作都有特定的模式。通过使用正则表达式,我们还可以从字符串中删除所有空格。我们将使用 Regex.Replace() 方法有效地删除所有空格。它属于 C# 中的 Regex 类。

使用此方法的正确语法如下:

Regex.Replace(String, @"\s", "")

这里的 "" 代表一个空的字符串。空格字符的正则表达式模式为\sRegex.Replace() 方法在给定的字符串中找到一个空格字符,并将其替换为空的字符串。

示例代码:

using System;
using System.Text.RegularExpressions;

namespace Example {
  class RemoveAllWhitespaces {
    static void Main(string[] args) {
      string OldString = "This is a String.";
      Console.WriteLine("The old string is: " + OldString);
      string NewString = Regex.Replace(OldString, @"\s", "");
      Console.WriteLine("The new string is: " + NewString);
    }
  }
}

输出:

The old string is: This is a String.
The new string is: ThisisaString.

C# 使用 String.Replace() 方法有效地从字符串中删除所有空格

这是从给定的字符串中删除空格的最简单方法。方法 Replace() 将给定的字符串或 character 替换为所需的字符串或字符。

使用此方法的正确语法如下:

String.Replace(" ", String.Empty);

这里的 String.Empty 代表一个空的字符串。该方法在字符串中查找空格,并将其替换为空的字符串。

示例代码:

using System;

namespace Example {
  class RemoveWhitespaces {
    static void Main(string[] args) {
      string String1 = "This is a String.";
      String1 = String1.Replace(" ", String.Empty);
      Console.WriteLine(String1);
    }
  }
}

输出:

The old string is: This is a String.
The new string is: ThisisaString.

C# 使用 Where 方法有效地删除字符串中的所有空格

方法 Where 是一个 LINQ 类方法。它用于执行各种有用的操作。我们在这里使用它来删除字符串中的所有空格。

使用此方法删除所有空格的正确语法如下:

String.Concat(OldString.Where(c => !Char.IsWhiteSpace(c)));

在这里,我们使用 WhereIsWhiteSpace() 方法的帮助下找到字符串的所有非空白。我们逐字符检查了字符串字符,然后用 String.Concat 方法来连接所有这些字符以再次形成字符串。

示例代码:

using System;
using System.Linq;

namespace Example {
  class RemoveAllWhitespaces {
    static void Main(string[] args) {
      string OldString = "This is a String.";
      Console.WriteLine("The old string is: " + OldString);
      string NewString = String.Concat(OldString.Where(c => !Char.IsWhiteSpace(c)));
      Console.WriteLine("The new string is: " + NewString);
    }
  }
}

输出:

The old string is: This is a String.
The new string is: ThisisaString.

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

从 C# 中的字符串中删除字符

发布时间:2024/01/16 浏览次数:74 分类:编程语言

有 4 种主要方法可用于从 C# 中的字符串,string.Replace()函数,string.Join()和 string.Split()函数,Regex.Replace()函数以及 Linq 方法。

在 C# 中转义双引号

发布时间:2024/01/16 浏览次数:144 分类:编程语言

有两种主要方法可用于在 C# 中转义双引号。在 C# 中使用""转义符转义双引号

在 C# 中重复字符串 X 次

发布时间:2024/01/16 浏览次数:173 分类:编程语言

在 C# 中,可以使用三种主要方法将字符串重复 x 次:字符串类构造函数,StringBuilder 类和 LINQ 方法。用 C# 中的 string 类构造函数重复执行 X 次字符串

在 C# 中重复字符串

发布时间:2024/01/16 浏览次数:140 分类:编程语言

可使用三种主要方法在 C# 中重复字符串,String 构造函数,LINQ 中的 Enumerable.Repeat()函数以及 StringBuilder 类。

在 C# 中向数组中添加字符串

发布时间:2024/01/16 浏览次数:168 分类:编程语言

没有内置方法可以将新元素动态添加到 C# 中完全填充的数组中。使用 C# 中的 List.Add() 方法将字符串添加到数组

在 C# 中截断字符串

发布时间:2024/01/16 浏览次数:66 分类:编程语言

我们可以使用 C# 中的 String.Substring()方法创建一个字符串的截断副本。在 C# 中使用 String.Substring() 方法截断字符串

在 C# 中将字符串格式设置为货币格式

发布时间:2024/01/16 浏览次数:156 分类:编程语言

在 C# 中,可以使用两种主要方法将字符串格式化为货币格式,即 String.Format()和 ToString()函数。在 C# 中使用 String.Format() 方法将字符串格式化为货币

在 C# 中将字符串拆分为列表

发布时间:2024/01/16 浏览次数:122 分类:编程语言

我们可以使用 string.Split()函数和 C# 中的 Linq 的 ToList()函数,将可变的字符串转换为字符串列表。在 C# 中使用 String.Split() 方法将字符串变量拆分为字符串列表

在 C# 中检查一个字符串是否为空或 null

发布时间:2024/01/16 浏览次数:132 分类:编程语言

string.IsNullOrEmpty()方法用于检查字符串在 C# 中是否为 null 或 string.Empty 值。检查 C# 中的字符串是空或者 null 如果我们要检查其中包含 null 值或""值的字符串,可以在 C# 中使用 string.IsNullOrEmpty() 方

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便