먼저 바꿀 문자열을 설정합니다.
string str = "Demo text!";
이제 replace() 메소드를 사용하여 위의 문자열을 교체하십시오.
string res = str.Replace("Demo ", "New ");
다음은 문자열의 단어를 바꾸는 전체 코드입니다.
예시
using System; public class Demo { public static void Main() { string str = "Demo text!"; Console.WriteLine(str); string res = str.Replace("Demo ", "New "); Console.WriteLine("After replacing..."); Console.WriteLine(res); } }
출력
Demo text! After replacing... New text!