Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

การลบช่องว่างโดยใช้ C # Regex


สมมติว่าเราต้องการลบช่องว่างออกจากสตริง str1 ต่อไปนี้

string str1 = "Brad Pitt";

ตอนนี้ใช้ Regex Replace เพื่อแทนที่ช่องว่างด้วยช่องว่าง ที่นี่เราใช้ System.Text.RegularExpressions

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

เรามาดูตัวอย่างฉบับสมบูรณ์กัน

ตัวอย่าง

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);
      }
   }
}

ผลลัพธ์

Brad Pitt
BradPitt