这个正则表达式模式是否会抛出异常?对我来说。
^\d{3}[a-z]
错误是:parsing "^\d{3}[a" - Unterminated [] set.
我感到愚蠢。我没有得到错误。 (我的RegexBuddy似乎没问题。)
我希望更多的背景可以解决这个问题:
我正在为SQL Server中的CLR用户定义函数编写此代码:
[Microsoft.SqlServer.Server.SqlFunction(IsDeterministic=true)]
public static SqlChars Match(
SqlChars input,
SqlString pattern,
SqlInt32 matchNb,
SqlString name,
SqlBoolean compile,
SqlBoolean ignoreCase,
SqlBoolean multiline,
SqlBoolean singleline
)
{
if (input.IsNull || pattern.IsNull || matchNb.IsNull || name.IsNull)
return SqlChars.Null;
RegexOptions options = RegexOptions.IgnorePatternWhitespace |
(compile.Value ? RegexOptions.Compiled : 0) |
(ignoreCase.Value ? RegexOptions.IgnoreCase : 0) |
(multiline.Value ? RegexOptions.Multiline : 0) |
(singleline.Value ? RegexOptions.Singleline : 0);
Regex regex = new Regex(pattern.Value, options);
MatchCollection matches = regex.Matches(new string(input.Value));
if (matches.Count == 0 || matchNb.Value > (matches.Count-1))
return SqlChars.Null;
Match match = matches[matchNb.Value];
int number;
if (Int32.TryParse(name.Value, out number))
{
return (number > (match.Groups.Count - 1)) ?
SqlChars.Null :
new SqlChars(match.Groups[number].Value);
}
else
{
return new SqlChars(match.Groups[name.Value].Value);
}
}
使用
进行设置CREATE FUNCTION Match(@input NVARCHAR(max), @pattern NVARCHAR(8), @matchNb INT, @name NVARCHAR(64), @compile BIT, @ignoreCase BIT, @multiline BIT, @singleline BIT)
RETURNS NVARCHAR(max)
AS EXTERNAL NAME [RegEx].[UserDefinedFunctions].[Match]
GO
用以下方法测试:
SELECT dbo.Match(
N'123x45.6789' --@input
, N'^\d{3}[a-z]' --@pattern
,0 --@matchNb
,0 --@name
,0 --@compile
,1 --@ignoreCase
,0 --@multiline
,1 --@singleline
)
答案 0 :(得分:8)
在CREATE FUNCTION语句中,您将@pattern声明为NVARCHAR(8)。这会将您的模式截断为8个字符。