zoukankan      html  css  js  c++  java
  • C# 正则表达式替换分组内的内容

    要替换的内容:

        Description      (    "Gets or sets the name of the series."
    ),
            Description(   "Gets the series' collection of data points."  ),
            Category("Elements"),
            DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
            Editor("DevExpress.XtraCharts.Design.SeriesCollectionEditor," + AssemblyInfo.SRAssemblyCharts, typeof(System.Drawing.Design.UITypeEditor)),
            System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)
            ]
            [
            Description("Gets or sets the text that identifies the series within the legend of a chart control."),
            Category("Behavior"),
            Localizable(true),
            DefaultValue("")
            ]

     
     
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.Text.RegularExpressions;
    
    namespace RegexReplace
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                Regex re = new Regex("Description\\s*\\(\\s*\"(.*?)\"\\s*\\)", RegexOptions.Singleline);
                var a = re.Matches(textBox1.Text);
                StringBuilder str = new StringBuilder();
                foreach (Match b in a)
                {
                    if (b.Success)
                    {
                        str.Append(b.Groups[1].Value);
                    }
                }
                textBox2.Text = re.Replace(textBox1.Text, m =>
                       {
                           if (m.Success)
                           {
                               return m.Value.Replace(m.Groups[1].Value, "[" + m.Groups[1].Value + "]");
                           }
                           else
                           {
                               return "null]";
                           }
    
                       });
            }
        }
    }
    

    替换后:

            Description      (    "[Gets or sets the name of the series.]"
    ),
            Description(   "[Gets the series' collection of data points.]"  ),
            Category("Elements"),
            DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
            Editor("DevExpress.XtraCharts.Design.SeriesCollectionEditor,"

     + AssemblyInfo.SRAssemblyCharts, typeof(System.Drawing.Design.UITypeEditor)),
            System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)
            ]
            [
            Description("[Gets or sets the text that identifies the series within the legend of a chart control.]"),
            Category("Behavior"),
            Localizable(true),
            DefaultValue("")
            ]

  • 相关阅读:
    Bootstrap_让Bootstrap轮播插件carousel支持左右滑动手势的三种方法
    JAVA_用Java来获取访问者真实的IP地址
    Html5_移动前端不得不了解的html5 head 头标签
    ThinkPad_T430重装系统
    JavaScript_JS判断客户端是否是iOS或者Android
    Html5_禁止Html5在手机上屏幕页面缩放
    HttpClient_httpclient 4.3.1 post get的工具类
    HttpClient_使用httpclient必须知道的参数设置及代码写法、存在的风险
    LATEX数学公式基本语法
    为WLW开发Latex公式插件
  • 原文地址:https://www.cnblogs.com/hdl217/p/2125592.html
Copyright © 2011-2022 走看看