Is there any way I can perform a Regular Expression search using T-SQL in SQL Server 2005 without having to load a .Net Assembly?
相关问题
- Improve converting string to readable urls
- keeping one connection to DB or opening closing pe
- Regex to match charset
- Regex subsequence matching
- Accommodate two types of quotes in a regex
相关文章
- Optimization techniques for backtracking regex imp
- Regex to check for new line
- Allow only 2 decimal points entry to a textbox usi
- Comparing speed of non-matching regexp
- Regular expression to get URL in string swift with
- 请问如何删除之前和之后的非字母中文单字
- Convert column to string in SQL Select
- Lazy (ungreedy) matching multiple groups using reg
Unfortunately, the only way I know is by using a CLR udf as described in http://msdn.microsoft.com/en-us/magazine/cc163473.aspx
Dan Farino seems to have written an SP for SQL Server exactly for the purpose of using regex without having to install a .NET framework for CLR. Looks promising.
It seems that you can do it with VBScript, but it's not very pretty.