📌  相关文章
📜  如何用 C# 中的字符串替换字符?

📅  最后修改于: 2022-05-13 01:55:48.815000             🧑  作者: Mango

如何用 C# 中的字符串替换字符?

给定一个字符串,现在我们的任务是用该字符串替换一个指定的字符。此任务是在 Replace() 方法的帮助下执行的。此方法用于将所有 Unicode字符替换为指定的字符串,并返回修改后的字符串。

句法:

这里,字符串是输入字符串, 将要替换的字符串中存在一个字符,而 new_string 是替换该字符的字符串。

例子:

Input: A portal in India
Replace A with Hello
Output: Hello portal in India

Input: Python is not equal to java
Replace is with was
Output: Python was not equal to java

方法:

要使用指定的字符串替换字符,请执行以下步骤:

  • 声明一个字符串
  • 使用 Replace()函数将字符(即“A”)替换为字符串(即“Geeks For Geeks”))
input_string.Replace("A", "Geeks For Geeks")
  • 显示修改后的字符串

例子:

C#
// C# program to replace a character
// with a specified string
using System;
 
class GFG{
 
public static void Main()
{
     
    // Define string
    String input_string = "A portal in India";
 
    Console.WriteLine("Actual String : " + input_string);
 
    // Replace the string 'A' with 'Geeks For Geeks'
    Console.WriteLine("Replaced String: " +
         input_string.Replace("A", "Geeks For Geeks"));
}
}


输出:

Actual String : A portal in India
Replaced String: Geeks For Geeks portal in India