T-SQL 에서 정규 표현 식 함수 사용

2025 단어 T-SQL정규 표현
우선,우 리 는 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 에 관심 이 있 으 실 수 있 습 니 다.

좋은 웹페이지 즐겨찾기