A co z funkcją PATINDEX?
Dopasowywanie wzorców w TSQL nie jest kompletną biblioteką wyrażeń regularnych, ale daje podstawy.
(Z książek online)
Wildcard Meaning
% Any string of zero or more characters.
_ Any single character.
[ ] Any single character within the specified range
(for example, [a-f]) or set (for example, [abcdef]).
[^] Any single character not within the specified range
(for example, [^a - f]) or set (for example, [^abcdef]).