C#의 문자열에서 따옴표 제거

Muhammad Maisam Abbas 2023년12월11일
C#의 문자열에서 따옴표 제거

이 자습서에서는 C#의 문자열 변수에서 따옴표를 제거하는 방법을 소개합니다.

C#에서String.Replace()함수를 사용하여 문자열에서 따옴표 제거

String.Replace(x, y)함수는 문자열x의 모든 발생을 C#의 기본 문자열 내에서 문자열y로 바꾸는 데 사용됩니다. String.Replace()함수에는 문자열 반환 유형이 있습니다. 문자열에서 따옴표를 제거하려면 빈 문자열로 바꿀 수 있습니다. 큰 따옴표를"\""로 바꾸도록 지정할 수 있습니다. 다음 코드 예제는 C#에서String.Replace()함수를 사용하여 문자열에서 따옴표를 제거하는 방법을 보여줍니다.

using System;

namespace remove_quotes_from_string {
  class Program {
    static void method1() {
      string str = "He said \"This is too soon for me\" and left.";
      Console.WriteLine(str);
      string newstr = str.Replace("\"", "");
      Console.WriteLine(newstr);
    }
    static void Main(string[] args) {
      method1();
    }
  }
}

출력:

He said "This is too soon for me" and left.
He said This is too soon for me and left.

위의 코드에서 우리는 C#의str.Replace()함수로 따옴표를 빈 문자열로 대체하여 문자열 변수str에서 따옴표를 제거했습니다. \이스케이프 문자를 사용하여 다른 쌍의 큰 따옴표 안에 큰 따옴표를 작성했습니다.

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

관련 문장 - Csharp String