T-SQL中使用正则表达式函数

2022-05-24 0 401

首先,我们在VSTS中创建一Database Project,增一个class, 实现下面的一个方法:


复制代码 代码如下:

/// <summary>

/// Regs the ex match.

/// </summary>

/// <param name=”inputValue”>The input value.</param>

/// <param name=”regexPattern”>The regex pattern.</param>

/// <remarks>Author: Petter Liu http://wintersun.cnblogs.com </remarks>

/// <returns>1 match,0 not match</returns>

[SqlFunction]

public static bool RegExMatch(string inputValue, string regexPattern)

{

// Any nulls – we can’t match, return false

if (string.IsNullOrEmpty(inputValue) || string.IsNullOrEmpty(regexPattern))

return false;

Regex r1 = new Regex(regexPattern.TrimEnd(null));

return r1.Match(inputValue.TrimEnd(null)).Success;

}

好了,Build后Deploy到你的Target database就OK了,VisualStudio会自动注册这个程序集的。如果,你想手动注册程序集,可执行以下的T-SQL:


复制代码 代码如下:

CREATE ASSEMBLY [RegExCLR] FROM ‘RegExCLR.dll’;

— Add the REGEX function. We want a friendly name

— RegExMatch rather than the full namespace name.

— Note the way we have to specify the Assembly.Namespace.Class.Function

— NOTE the RegExCLR.RegExCLR

— (one is the assembly the other is the namespace)

CREATE FUNCTION RegExMatch ( @inputCalue NVARCHAR(4000),

@regexPattern NVARCHAR(4000) ) RETURNS BIT

AS EXTERNAL NAME RegExCLR.RegExCLR.ClrClass.RegExMatch;

OK, 一切OK的后,我们来测试下:

select COUNT(1) from Threads where dbo.RegExMatch(ThreadId,’^[{|\(]?[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}[\)|}]?$’)=1

上面的T-SQL是找出Threads表ThreadId是GUID的记录数。 等于1是匹配,^[{|\(]?[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}[\)|}]?$ 匹配GUID的正则表达式。

完了,希望这篇POST对您有帮助。

您可能对以下POST感兴趣:

SQLSERVER2008中CTE的Split与CLR的性能比较

SQLSERVER使用CLR Stored Procedure导出数据到Excel

免责声明:
1、本网站所有发布的源码、软件和资料均为收集各大资源网站整理而来;仅限用于学习和研究目的,您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。 不得使用于非法商业用途,不得违反国家法律。否则后果自负!

2、本站信息来自网络,版权争议与本站无关。一切关于该资源商业行为与www.niceym.com无关。
如果您喜欢该程序,请支持正版源码、软件,购买注册,得到更好的正版服务。
如有侵犯你版权的,请邮件与我们联系处理(邮箱:skknet@qq.com),本站将立即改正。

NICE源码网 MsSql T-SQL中使用正则表达式函数 https://www.niceym.com/60097.html