C#控制台基础 Replace 将字符串中的指定的特殊字符串替换掉

时间:2020-12-25 20:11:08
       慈心积善融学习,技术愿为有情学。善心速造多好事,前人栽树后乘凉。我今于此写经验,愿见文者得启发。


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "关键词";
            //不允许出现“关键”二字

            //判断是否在str字符串中存在“关键"二字,如果存在,将二字替换为**
            if(str.Contains("关键"))
            {
                str = str.Replace("关键","**");
            }
            Console.WriteLine(str);

            Console.ReadKey();
        }
    }
}

C#控制台基础 Replace 将字符串中的指定的特殊字符串替换掉




感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。Console,ASP.NET,Winform,WPF,设计模式等都可以关注一下,眼界要开阔。
Visual Studio IDE很好用,推荐!
注:此文是自学笔记所生,质量中等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。