Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C# 문자열에서 특수 문자를 바꾸는 프로그램

<시간/>

문자열이 −

라고 가정해 보겠습니다.
string str = "abcd$ef$gh";

특수 문자를 바꾸려면 Replace() 메서드를 사용하십시오.

string res = str.Replace('$', 'k');

다음은 문자열에서 문자를 대체하는 완전한 코드입니다 -

예시

using System;
public class Program {
   public static void Main() {
      string str = "abcd$ef$gh";
      Console.WriteLine("Initial string = " + str);
      string res = str.Replace('$', 'k');
      // after replacing
      Console.WriteLine("Replaced string = " + res.ToString());
   }
}

출력

Initial string = abcd$ef$gh
Replaced string = abcdkefkgh