Computer >> Máy Tính >  >> Lập trình >> C#

Xóa khoảng trắng bằng C # Regex

Giả sử chúng tôi muốn xóa khoảng trắng khỏi chuỗi str1 sau.

string str1 = "Brad Pitt";

Bây giờ, sử dụng Regex Replace để thay thế khoảng trắng bằng khoảng trống. Ở đây, chúng tôi đã sử dụng System.Text.RegularExpressions.

string str2 = System.Text.RegularExpressions.Regex.Replace(str1, @"\s+", "");

Hãy để chúng tôi xem ví dụ đầy đủ.

Ví dụ

using System;
using System.Text.RegularExpressions;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         string str1 = "Brad Pitt";
         Console.WriteLine(str1);
         string str2 = System.Text.RegularExpressions.Regex.Replace(str1, @"\s+", "");
         Console.WriteLine(str2);
      }
   }
}

Đầu ra

Brad Pitt
BradPitt