17._5正则表达式的替换

Posted 前缘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了17._5正则表达式的替换相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
namespace _17._5正则表达式的替换
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = "Welcome to ***ww****w*********************";
            string pattern = @"\bw{3}\.\w+\.(com|net|org)\b";
            string replacment ="\n"+@"http://$&";

            Console.WriteLine("替换前的字符串"+input);
            Console.WriteLine("替换后的字符串");
            Console.WriteLine(Regex.Replace(input,pattern,replacment));
            Console.WriteLine("替换后的字符串1:"+(Regex.Replace(input,pattern,replacment,RegexOptions.IgnoreCase)).ToLower());
            Console.WriteLine("替换后的字符串2:"+Regex.Replace(input,"www","\n"+@"http://www.",RegexOptions.IgnoreCase));


            Regex myregex = new Regex(pattern,RegexOptions.IgnoreCase);
            string result = myregex.Replace(input, replacment);
            Console.WriteLine("替换后的字符串3:"+result.ToLower());

            Console.ReadKey();
        }
    }
}

 

以上是关于17._5正则表达式的替换的主要内容,如果未能解决你的问题,请参考以下文章

在 mySql 中使用正则表达式选择和替换数据

正则表达式用 JQuery ui 自动完成替换某些字符

组之间的正则表达式替换

01_正则表达式_03_替换

重修课程day17(正则表达式)

正则表达式替换“。”到 ”_”