SQL SERVER 正則匹配執行個體分享–【葉子】

來源:互聯網
上載者:User
--====================================--標題: 應用執行個體之SQL SERVER 正則匹配--作者:maco_wang--時間:2012-03-25--說明:MS-SQL SERVER 中的正則匹配--====================================/*假設測試資料為:col----------a b d c ea a b c db b c d ee u g h wo a k d w1)得到沒有重複字母的行,即想要得到如下結果:col--------------a b c d ee u g h wo p k n w2)得到同時存在a和d,並且a和d之間只有0或是1個字母的,即想要得到的結果:col----------a b d c eo a k d w*/--測試資料if object_id('[tb]') is not null drop table [tb]create table [tb] (col varchar(10))insert into [tb]select 'a b d c e' union allselect 'a a b c d' union allselect 'b b c d e' union allselect 'e u g h w' union allselect 'o a k d w' select * from [tb]--本樣本在SQL SERVER 2000版本即可適用。gocreate function dbo.RegexMatch(    @pattern varchar(2000),    @matchstring varchar(8000))returns intas begin    declare @objRegexExp int    declare @strErrorMessage varchar(255)    declare @hr int,@match bit    exec @hr= sp_OACreate 'VBScript.RegExp', @objRegexExp out    if @hr = 0         exec @hr= sp_OASetProperty @objRegexExp, 'Pattern', @pattern    if @hr = 0         exec @hr= sp_OASetProperty @objRegexExp, 'IgnoreCase', 1    if @hr = 0         exec @hr= sp_OAMethod @objRegexExp, 'Test', @match OUT, @matchstring    if @hr <>0     begin        return null    end    exec sp_OADestroy @objRegexExp    return @matchendgo--1)得到沒有重複字母的行--正常思路,可能是按照空格分割後去重然後合并,最後判斷長度(略)--用正則就很方便了select col from [tb] where dbo.RegexMatch('^.*?([a-z])[ ]\1.*?$',col)=0/*col----------a b d c ee u g h wo a k d w*/--2)得到同時存在a和d,並且a和d之間間隔小於等於一個字母的--正常思路select col from [tb] where charindex('a',col)>0and charindex('d',col)>0and abs(charindex('a',col)-charindex('d',col))<5/*col----------a b d c eo a k d w*/--正則處理select col from [tb] where dbo.RegexMatch('.*a[a-z ]{1,3}d.*',col)=1/*col----------a b d c eo a k d w*/--這裡的正則寫法考慮的就不全,如果d在a前面呢?--那麼修正一下select col from [tb] where dbo.RegexMatch('.*d[a-z ]{1,3}a.*|.*a[a-z ]{1,3}d.*',col)=1/*col----------a b d c eo a k d w*/
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.