T-SQL 에서 정규 표현 식 함수 사용
/// <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 에 관심 이 있 으 실 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
grep 정규 표현 식 과 일치- E 옵션 이 없 는 grep 를 사용 할 때 기본 정규 매 칭 을 지원 합 니 다.예 를 들 어 'abc' 키워드 검색, '^ abc' 는 줄 의 첫 번 째 와 일치 하고 'abc $' 는 줄 의 끝 과 일치 합...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.