正则表达式匹配中括号中内容

前端之家收集整理的这篇文章主要介绍了正则表达式匹配中括号中内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
常用,但好多人貌似没找到合适的,贴一个我正在用的,很简单:
System.Text.RegularExpressions.MatchCollection matchCollection = System.Text.RegularExpressions.Regex.Matches(“[abc adf asdfe]”,@"\[(.*?)]",System.Text.RegularExpressions.RegexOptions.IgnoreCase);
                                foreach (System.Text.RegularExpressions.Match match in matchCollection)
                                {
                                    var value = match.Value.Replace(match.Value,"");

                                }
原文链接:https://www.f2er.com/regex/362765.html

猜你在找的正则表达式相关文章