您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)T-SQL中如何使用正則表達(dá)式函數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
首先,我們在VSTS中創(chuàng)建一Database Project,增一個class, 實現(xiàn)下面的一個方法:
代碼如下: /// <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會自動注冊這個程序集的。如果,你想手動注冊程序集,可執(zhí)行以下的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的記錄數(shù)。 等于1是匹配,^[{|\(]?[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}[\)|}]?$ 匹配GUID的正則表達(dá)式。 完了,希望這篇POST對您有幫助。您可能對以下POST感興趣: SQLSERVER2008中CTE的Split與CLR的性能比較 SQLSERVER使用CLR Stored Procedure導(dǎo)出數(shù)據(jù)到Excel
看完上述內(nèi)容,你們對T-SQL中如何使用正則表達(dá)式函數(shù)有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。