示例#1
0
        public static SqlInt32 regexMatch(SqlString functionString, SqlString columnString)
        {
            var compStrings = new CompStrings(functionString, columnString);
            var regex       = new SQLServerRegexMatch(opts, compStrings.from);

            return(new SqlInt32(regex.regexMatch(compStrings.to)));
        }
 public static SqlInt32 regexMatch(SqlString functionString, SqlString columnString)
 {
     var compStrings = new CompStrings(functionString, columnString);
     var regex = new SQLServerRegexMatch(opts, compStrings.from);
     return new SqlInt32(regex.regexMatch(compStrings.to));
 }