c# 正则表达式 匹配中括号&颜色过滤_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c# 正则表达式 匹配中括号&颜色过滤

c# 正则表达式 匹配中括号&颜色过滤

 2016/8/29 5:31:44  649727360  程序员俱乐部  我要评论(0)
  • 摘要:现在需要匹配[color=#000000],以"[color"开头,以"]"结束,中间字符数量不限制,最后返回所有匹配的下标。代码如下:1///<summary>2///取得所有匹配项的下标3///</summary>4///<paramname="source">原内容</param>5///<returns>返回匹配列表的下标</returns>6publicstaticint[]GetColorIndexGroup
  • 标签:C# 正则表达式 表达式 正则

现在需要匹配 [color=#000000],以"[color"开头,以"]"结束,中间字符数量不限制,最后返回所有匹配的下标。

代码如下:

 1         /// <summary>         
 2         /// 取得所有匹配项的下标
 3         /// </summary>         
 4         /// <param name="source">原内容</param>         
 5         /// <returns>返回匹配列表的下标</returns>         
 6         public static int[] GetColorIndexGroup(string source)
 7         {
 8             // 定义正则表达式用来匹配  
 9             Regex reg = new Regex("\\[color.*?\\]", RegexOptions.IgnoreCase);
10 
11             //将匹配到的项替换为空
12             //var newSource = reg.Replace(source, "");
13 
14             // 搜索匹配的字符串             
15             MatchCollection matches = reg.Matches(source);
16 
17             int i = 0;
18             int[] colorGroup = new int[matches.Count];
19             // 取得匹配项列表             
20             foreach (Match match in matches)
21             {
22                 colorGroup[i++] = match.Index;
23             }
24             return colorGroup;
25         }

 

发表评论
用户名: 匿名