The bad news is there isn’t any built-in function in SQL server to conduct regular expression.
The good news is still you can do it.
In SQL server 2005, you can create stored procedures and user-defined function by managed code and CLR Integration. Of course, regular expressions can be done exactly same as codes we showed.
In SQL server 2000, ECMA Regex can be used via VBScript.RegExp. You can google VBScript.RegExp to get sql code creating regular expression User-defined functions.
The good news is still you can do it.
In SQL server 2005, you can create stored procedures and user-defined function by managed code and CLR Integration. Of course, regular expressions can be done exactly same as codes we showed.
In SQL server 2000, ECMA Regex can be used via VBScript.RegExp. You can google VBScript.RegExp to get sql code creating regular expression User-defined functions.