c#想要实现字符串内容的替换方法非常的简单,我们可以通过Replace来实现对字符串指定内容的替换工作
字符串名称.Replace(需要替换的源字符串,替换后的字符串)
关键代码:
static void Main(string[] args)
{
string myString = "news.hcsw666.com";
string newMyString=myString.Replace('n','w');
Console.WriteLine("源字符串为:"+myString);
Console.WriteLine("新字符串内容为:"+newMyString);
Console.ReadKey();
}
评论