An implementation of SQL Server regular substitution function

Source: Internet
Author: User

--function

IF object_id(N'dbo. Regexreplace') is not NULL DROP FUNCTIONdbo. RegexreplaceGO CREATE FUNCTIONdbo. Regexreplace (@string VARCHAR(MAX),--the string to be replaced@pattern VARCHAR(255),--Replace template@replacestr VARCHAR(255),--the replaced string@IgnoreCase INT = 0 --0 Case-sensitive 1 is case insensitive) RETURNS VARCHAR(8000) as BEGIN DECLARE @objRegex INT,@retstr VARCHAR(8000) --Creating ObjectsEXECsp_OACreate'VBScript.RegExp',@objRegex out--Setting PropertiesEXECsp_OASetProperty@objRegex,'Pattern',@pattern EXECsp_OASetProperty@objRegex,'IgnoreCase',@IgnoreCase EXECsp_OASetProperty@objRegex,'Global',1 --ExecutionEXECsp_OAMethod@objRegex,'Replace',@retstrOut,@string,@replacestr --ReleaseEXECUTEsp_OADestroy@objRegex RETURN @retstr END GO

Usage example (replace space):

-- Replace spaces print dbo. Regexreplace ('0   _ 276 _ 5'\s+", 1 )-- output: 0_276_5

An implementation of SQL Server regular substitution function

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.