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