Using regular expression within a stored procedure

前端 未结 2 1994
春和景丽
春和景丽 2020-12-20 09:26

What is the regular expression pattern that enables every input besides characters? So far this is what i have -

CREATE PROCEDURE Paging_Movies
@alphaChar ch         


        
2条回答
  •  -上瘾入骨i
    2020-12-20 09:47

    If you want true regular expression pattern matching you will need to roll your own CLR UDF. This link goes over how to do that:

    http://msdn.microsoft.com/en-us/magazine/cc163473.aspx

    Keep in mind that you can only do this in SQL Server 2005 or higher.

    If you just want non-alpha you can do this:

    '([^a-z])'
    

    Here is the documentation for SQL Server like:

    http://msdn.microsoft.com/en-us/library/ms179859.aspx

提交回复
热议问题