当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String Replace()用法及代码示例


C# Replace() 方法用于获取一个新字符串,其中该字符串中所有出现的指定 Unicode 字符都被替换为另一个指定的 Unicode 字符。

Replace() 方法有两种方法。您也可以替换字符串。

签名

public string Replace(Char first, Char second)
public string Replace(String firstString, String secondString)

参数

first:它是 char 类型的第一个参数。

second:它是 char 类型的第二个参数。

返回

它返回一个字符串。

C# 字符串 Replace() 方法示例

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello F#";
           string s2 = s1.Replace('F','C');
           Console.WriteLine(s2);
        }  
    }

输出:

Hello C#

C# 字符串 Replace() 方法示例 2

using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#, Hello .Net, Hello Javatpoint";
           string s2 = s1.Replace("Hello","Cheers");
           Console.WriteLine(s2);
        }  
    }

输出:

Cheers C#, Cheers .Net, Cheers Javatpoint




相关用法


注:本文由纯净天空筛选整理自 C# String Replace()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。