正则表达式:搜索匹配的sql

前端之家收集整理的这篇文章主要介绍了正则表达式:搜索匹配的sql前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

using System.Text.RegularExpressions;

       private bool RegexMatch(string sSource,string sRegexFormat)
        {
            Regex reg = new Regex(sRegexFormat,RegexOptions.IgnoreCase);
            try
            {
                if (reg.IsMatch(sSource))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            catch (Exception ex)
            {
                return false;
            }
        }
RegexMatch(stringSource,"Mbr_Elig_Term_Date IS NULL") RegexMatch(stringSource,"ISNULL\(.*MBR_ELIG_TERM_DATE.*\)") RegexMatch(stringSource,"ISNULL\(.{0,10}MBR_ELIG_TERM_DATE.{0,10}\)") RegexMatch(stringSource,20}[.[]MBR_ELIG_TERM_DATE.{0,10}\)") 原文链接:https://www.f2er.com/regex/363125.html

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