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

      // 更换后

      Console.WriteLine("Replaced string = " + res.ToString());

   }

}

输出结果
Initial string = abcd$ef$gh

Replaced string = abcdkefkgh

以上是 C# 程序替换字符串中的特殊字符 的全部内容, 来源链接: utcz.com/z/335639.html

回到顶部