Förutsatt att de faktiska uppgifterna inte är mer komplexa än de angivna exemplen, bör detta fungera utan att tillgripa RegEx:
DECLARE @posts TABLE
(
post_id INT NOT NULL IDENTITY(1, 1),
post_text NVARCHAR(4000) NOT NULL,
body NVARCHAR(2048) NULL
);
INSERT INTO @posts (post_text, body) VALUES (N'first',
N'Visit [Google](http://google.com)');
INSERT INTO @posts (post_text, body) VALUES (N'second',
N'Get an [iPhone](http://www.apple.com)');
INSERT INTO @posts (post_text, body) VALUES (N'third',
N'[Example](http://example.com)');
INSERT INTO @posts (post_text, body) VALUES (N'fourth',
N'This is a message');
INSERT INTO @posts (post_text, body) VALUES (N'fifth',
N'I like cookies (chocolate chip)');
INSERT INTO @posts (post_text, body) VALUES (N'sixth',
N'[Frankie] says ''Relax''');
INSERT INTO @posts (post_text, body) VALUES (N'seventh',
NULL);
SELECT p.post_text,
SUBSTRING(
p.body,
CHARINDEX(N'](', p.body) + 2,
CHARINDEX(N')', p.body) - (CHARINDEX(N'](', p.body) + 2)
) AS [URL]
FROM @posts p
WHERE p.body like '%\[%](http%)%' ESCAPE '\';
Utdata:
post_text URL
first http://google.com
second http://www.apple.com
third http://example.com
PS:
Om du verkligen vill använda reguljära uttryck kan de bara göras via SQLCLR. Du kan skriva dina egna eller ladda ner färdiga bibliotek. Jag skrev ett sådant bibliotek, SQL#
, som har en gratisversion som inkluderar RegEx-funktionerna. Men de bör endast användas om en T-SQL-lösning inte kan hittas, vilket hittills inte är fallet här.