SQL SERVER Regular Replacement

Source: Internet
Author: User
Tags ole

Use PUBDB
Go

IF object_id (N ' dbo. Regexreplace ') is not NULL
DROP FUNCTION dbo. Regexreplace
GO
--Start creating a regular replacement function
CREATE FUNCTION DBO. Regexreplace
(
@string VARCHAR (MAX),--the string to be replaced
@pattern VARCHAR (255),--Replacement template
@replacestr VARCHAR (max),--the replaced string
@IgnoreCase INT = 0--0 Case-sensitive 1 is case insensitive
)
RETURNS VARCHAR (max)
As
BEGIN
DECLARE @objRegex INT, @retstr VARCHAR (8000)
--Create Object
EXEC sp_OACreate ' VBScript.RegExp ', @objRegex out
--Set properties
EXEC sp_OASetProperty @objRegex, ' Pattern ', @pattern
EXEC sp_OASetProperty @objRegex, ' IgnoreCase ', @IgnoreCase
EXEC sp_OASetProperty @objRegex, ' Global ', 1
-Execution
EXEC sp_OAMethod @objRegex, ' Replace ', @retstr out, @string, @replacestr
--Release
EXECUTE sp_OADestroy @objRegex
RETURN @retstr
END
GO

--to ensure normal operation, you need to set the OLE Automation procedures option to 1
EXEC sp_configure ' show advanced options ', 1
RECONFIGURE with OVERRIDE
EXEC sp_configure ' Ole Automation procedures ', 1
RECONFIGURE with OVERRIDE



SQL SERVER Regular Replacement

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.