如果此正则表达式模式引发异常
本文关键字:异常 模式 正则表达式 如果 | 更新日期: 2023-09-27 17:58:25
此regex模式是否应该引发异常?对我有帮助。
^'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
)
在您的CREATE FUNCTION语句中,您正在将@pattern建模为NVARCHAR(8)。这是将您的模式截断为8个字符。