Thursday, August 7, 2008

Adding Regular Expressions (Regex) to SQL Server 2005

It is very easy to add Regular Expressions or other custom functionality to SQL Server 2005 because it support CLR. This means all you have to do it create a custom Assembly, mark it up with some attributes (similar to the way you do web services), and click the deploy button, and that is it. Microsoft really does make it easy using Visual Studio 2005 (and 2008 I assume). All you have to do it create a SQL Server Project. You can use VB.NET or C#, just pick the appropriate SQL Server Project. It pretty much walks you through creating the project. After it is done, you will need to right-click the project | Add | User-Defined Function... Give it whatever name you want. It gives you a simple stub. Just build and deploy. It deploys the assembly to the database it helps you with initially, and makes User-Defined functions (that call the assembly). You can then call your function like any other User-Defined function. The name and parameters show up in the User-Defined functions section under Database | Programmability | Functions | Scalar-valued Functions. It was also recommended by someone (see references) to in execute the following SQL (I only did it the first time I deployed) to enable CLR and install required support. sp_configure 'clr enabled',1 reconfigure There is one VERY important thing you need add to any method you want to be able to access from SQL. You must add the attribute [SqlFunction]. The method must also be public and static I believe. The parameters and return value have to be SQL types like: SqlChars, SqlString, SqlInt32, etc. You can use standard C# and VB.NET types everywhere within your method, but the parameters and return value MUST be SQL types. Below is my implementation (or at least part what I wrote and part an adaptation of parts from what other people wrote... see references) of three key Regular Expression methods I think are very useful.
  • RegexMatch - returns 1 if pattern can be found in input, else 0
  • RegexReplace - replaces all matches in input with a specified string
  • RegexSelectOne - returns the first, second, third, etc match that can be found in the input
  • RegexSelectAll - returns all matches delimited by separator that can be found in the input
Examples of how to use them in SQL:
  • select dbo.RegexMatch( N'123-45-6749', N'^\d{3}-\d{2}-\d{4} Returns 1 in this case since the phone number pattern is matched
  • select dbo.RegExReplace('Remove1All3Letters7','[a-zA-Z]','') Returns 137 since all alpha characters where replaced with no character
  • select dbo.RegexSelectOne('123-45-6749xxx222-33-4444', '\d{3}-\d{2}-\d{4}', 0) Returns 123-45-6789 since first match was specifed. If last parameter was 1 then the second match (222-33-4444) would be returned.
  • select dbo.RegexSelectAll('123-45-6749xxx222-33-4444', '\d{3}-\d{2}-\d{4}', '|') Returns 123-45-6749|222-33-4444
The actual implementation of this is nothing special other than the conversion of SQL Types. The complete source code (no project since it is so specific to your environment) to the implementation is available for download here.

using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Text.RegularExpressions;
using System.Text;

public partial class UserDefinedFunctions
{

    public static readonly RegexOptions Options = RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline;

    [SqlFunction]
    public static SqlBoolean RegexMatch(SqlChars input, SqlString pattern)
    {
        Regex regex = new Regex(pattern.Value, Options);
        return regex.IsMatch(new string(input.Value));
    }

    [SqlFunction]
    public static SqlString RegexReplace(SqlString expression, SqlString pattern, SqlString replace)
    {
        if (expression.IsNull || pattern.IsNull || replace.IsNull)
            return SqlString.Null;

        Regex r = new Regex(pattern.ToString());
        return new SqlString(r.Replace(expression.ToString(), replace.ToString()));
    }

    // returns the matching string. Results are separated by 3rd parameter
    [SqlFunction]
    public static SqlString RegexSelectAll(SqlChars input, SqlString pattern, SqlString matchDelimiter)
    {
        Regex regex = new Regex(pattern.Value, Options);
        Match results = regex.Match(new string(input.Value));

        StringBuilder sb = new StringBuilder();
        while (results.Success)
        {
            sb.Append(results.Value);

            results = results.NextMatch();

            // separate the results with newline|newline
            if (results.Success)
            {
                sb.Append(matchDelimiter.Value);
            }
        }

        return new SqlString(sb.ToString());

    }

    // returns the matching string
    // matchIndex is the zero-based index of the results. 0 for the 1st match, 1, for 2nd match, etc
    [SqlFunction]
    public static SqlString RegexSelectOne(SqlChars input, SqlString pattern, SqlInt32 matchIndex)
    {
        Regex regex = new Regex(pattern.Value, Options);
        Match results = regex.Match(new string(input.Value));

        string resultStr = "";
        int index = 0;

        while (results.Success)
        {
            if (index == matchIndex)
            {
                resultStr = results.Value.ToString();
            }

            results = results.NextMatch();
            index++;

        }

        return new SqlString(resultStr);

    }

};

What I used to get started. http://weblogs.sqlteam.com/jeffs/archive/2007/04/27/SQL-2005-Regular-Expression-Replace.aspx How to optimize regex calls: http://blogs.msdn.com/sqlclr/archive/2005/06/29/regex.aspx More Information: http://msdn.microsoft.com/en-us/magazine/cc163473.aspx I found this after writing this, but it explains other details I did not. http://www.codeproject.com/KB/string/SqlRegEx.aspx?display=PrintAll

275 comments:

«Oldest   ‹Older   201 – 275 of 275
Event Management services in chennai said...

Very nice work. I like the style.
Event Management services in chennai
Catering Manpowers in chennai
Male and Female Promoters in chennai
Wedding Event Management Companies In Chennai
Event staffing services Chennai

Dinesh Karthik said...

Nice blog. Keep posting. Thanks for sharing.

want to buy crackers?

Buy crackers online from bijili.co

joyce said...

Brilliant work! Hope you continue creating this kind of article. Try visiting our webpage.
카지노사이트
https://yhn876.com/ 카지노사이트

Agra Same Day Tour Package said...

Thanks for sharing very helpful blog post. Really it was so awesome article. I like your content. Agra Same Day Tour Package

Sharma said...

Awesome..You have clearly explained …Its very useful for me to know about new things..Keep on blogging..

Digital Marketing Course in Chennai
Digital Marketing Courses in Bangalore
Digital Marketing Course in Delhi
Digital Marketing Online Course

LIZA said...

This is actually the kind of information I have been trying to find. Thank you for writing this information.i want to share our website. this is promising and worth reading i hope you visit our website.. 바카라사이트

https://yhn777.com‌ ‌카지노사이트

Yoona said...

You make good use of flavored words that make your article tasteless. Just Wow!
Please do visit our website too.
카지노사이트
https://yhn876.com 카지노사이트

Kashi Digital Agency said...

Seo company in Varanasi, India : Best SEO Companies in Varanasi, India: Hire Kashi Digital Agency, best SEO Agency in varanasi, india, who Can Boost Your SEO Ranking, guaranteed SEO Services; Free SEO Analysis.

Best Website Designing company in Varanasi, India : Web Design Companies in varanasi We design amazing website designing, development and maintenance services running from start-ups to the huge players


Wordpress Development Company Varanasi, India : Wordpress development Company In varanasi, india: Kashi Digital Agency is one of the Best wordpress developer companies in varanasi, india. Ranked among the Top website designing agencies in varanasi, india. wordpress website designing Company.

E-commerce Website designing company varanasi, India : Ecommerce website designing company in Varanasi, India: Kashi Digital Agency is one of the Best Shopping Ecommerce website designing agency in Varanasi, India, which provides you the right services.

Kashi Digital Agency said...

Seo company in Varanasi, India : Best SEO Companies in Varanasi, India: Hire Kashi Digital Agency, best SEO Agency in varanasi, india, who Can Boost Your SEO Ranking, guaranteed SEO Services; Free SEO Analysis.

Best Website Designing company in Varanasi, India : Web Design Companies in varanasi We design amazing website designing, development and maintenance services running from start-ups to the huge players


Wordpress Development Company Varanasi, India : Wordpress development Company In varanasi, india: Kashi Digital Agency is one of the Best wordpress developer companies in varanasi, india. Ranked among the Top website designing agencies in varanasi, india. wordpress website designing Company.

E-commerce Website designing company varanasi, India : Ecommerce website designing company in Varanasi, India: Kashi Digital Agency is one of the Best Shopping Ecommerce website designing agency in Varanasi, India, which provides you the right services.

Joe said...

School erp
school software
school management
online class
virtual classroom
virtual software
virtual learning

saketh321 said...

Excellent effort to make this blog more wonderful and attractive. ExcelR Data Science Course In Pune

Garmin Express Update said...

We also provide support for Garmin devices on different keywords like Garmin.com/Express, Garmin Express Update and others. If you are going to download Garmin Express then also you may take help from us, if you need help. We are available 24x7. I used to be more than happy to find this blog. I wanted to thanks on your time for this glorious read!! I positively enjoying each little little bit of it and I’ve you bookmarked to take a look at new stuff you blog post. Thanks for sharing!

Garmin Express Update said...

If you already got a Garmin.com/Express that exists, you must use the same email address to get your account seen on your products' list. When it comes to devices linked to the Garmin connect, such as the fitness devices, it shall be automatically registered during the set of the device. We are available 24/7!

amour said...

Great articles and great layout. Your blog post deserves all of the positive feedback it’s been getting. Visit our website too.
바카라사이트
https://game79zone.com 바카라사이트

Unknown said...

Very good information provided, Thanks a lot for sharing such useful information.
Digital Marketing Company in Haldwani

Unknown said...

This is really informative. Keep sharing more such posts. Looking forward to learning from you.
Best Digital Marketing Company in Haldwani

sabrina said...

Amazing!!! This blog presents a very valuable information. Keep up the good work! Visit our website too. Thankyou!
카지노사이트
https://yhn777.com 카지노사이트

Passport Agent in Delhi and Noida said...

Very good described and informatics blog, thank you for sharing it. It’s really helpful. Please keep updating us. However If anyone is looking for the best passport agent in Delhi can contact me at 8920321855

AYA said...

Hello guys! Thank you for sharing this wonderful article for everyone, it is reall have a lot of information that really awesome and entertaining. Want some site? Just click the link, thanks. 카지노사이트
https://yhn777.com 카지노사이트

Best Training Institute said...

Thanks For sharing a nice post about all Course.It is very helpful and for us.
Dell Boomi training in bangalore

Yoona said...

Who wouldn't love this it's amazing the content are catchy. I like it, hope you visit my weblog too. Thanks!
카지노사이트
https://yhn777.com 카지노사이트

Aishwariya said...

I read this blog post and this blog post is one of the best blog post, so keep more post for sharing. Primavera Course in Chennai | primavera online training

sabrina said...

Way cool! Some extremely valid points!
I appreciate you penning this article,
plus the rest of the website is extremely good.
Visit this site ,
link the link below



카지노사이트
https://yhn876.com 카지노사이트

Sầu nhân thế said...

Điều anh viết quá hay

máy xông tinh dầu bằng điện

máy khuếch tán tinh dầu silent night

máy xông tinh dầu đuổi muỗi

máy khuếch tán tinh dầu hà nội

3RI Technologies said...

Good Information, visit us to know about the courses and placements, Python Courses Fees

3RI Technologies said...
This comment has been removed by the author.
Michael Oliver said...

Good blog,

Event Management Chennai, Event Management Companies in Chennai, Event Organisers Chennai, Birthday Party Organizers in Chennai, Wedding Planners in Chennai, Top 10 Event Management Companies Chennai, Best Event Management Company in Chennai

https://www.xquisiteevents.in/

Ram said...

Good Article! Useful for read and thanks for sharing.

bijili.co is the best place to Buy Crackers Online also we offers wide range of fancy fireworks, sparklers, atom bomb, rockets, chakkaras, crackers gift boxes online and more.

Devi said...

Grab the extraordinary Oracle Course with PLSQL from Infycle Technologies, the best software training institute in Chennai. Infycle offers the Best Oracle PLSQL Training in Chennai, with various IT demanding courses such as Big Data, Python, DevOps, Selenium, Full-Stack development, etc., in complete hands-on practical training with professional tutors in the field. In addition to that, the mock interviews will be done for the candidates so that they can face the interviews with total confidence. To have all these within your hands, call 7502633633 for having a free demo.Oracle PLSQL Training in Chennai | Infycle Technologies

BtreeSystem Training said...

hadoop training in chennai
machine learning training chennai
aws training in chennai
IoT Training in Chennai
php training in chennai

Village Talkies said...

Great with detailed information. It is really very helpful for us.
Village Talkies a top-quality professional corporate video production company in Bangalore and also best explainer video company in Bangalore & animation video makers in Bangalore, Chennai, India & Maryland, Baltimore, USA provides Corporate & Brand films, Promotional, Marketing videos & Training videos, Product demo videos, Employee videos, Product video explainers, eLearning videos, 2d Animation, 3d Animation, Motion Graphics, Whiteboard Explainer videos Client Testimonial Videos, Video Presentation and more for all start-ups, industries, and corporate companies. From scripting to corporate video production services, explainer & 3d, 2d animation video production , our solutions are customized to your budget, timeline, and to meet the company goals and objectives.
As a best video production company in Bangalore, we produce quality and creative videos to our clients.

asha24 said...

Thanks for Sharing This Article.It is very so much valuable content. I hope these Commenting lists will help to my website
online training

Vijayakash said...

It is really a great work and the way in which u r sharing the knowledge is excellent

Android Training in Tambaram
Android Training in Anna Nagar
Android Training in Velachery
Android Training in T Nagar
Android Training in Porur
Android Training in OMR
Android Training in Chennai

nayar said...

Wonderful blog.Thanks for sharing such a worthy information...
Digital Marketing Courses in Bangalore
digital marketing course in pune
digital marketing course in hyderabad
digital marketing course in gurgaon

Akila said...

Great post. keep sharing such a worthy information

 Digital Marketing Course in Chennai    
  Best digital marketing course online    
 Digital Marketing Courses in Bangalore 

Alexis Gipson said...

Thanks for the interesting content. I like your post and your blog is amazing.
If you are interested in Video Downloader apps you can check my blog site. It is new and really informative.

smartnews for pc windows 10 7 mac

Girl said...

Great post. keep sharing such a worthy information

Big data training in chennai
Big Data Course in Chennai

salome said...

interesting to read and very useful.Angular training in Chennai

shakunthala said...

thanks for sharing this post with us
job guaranteed courses in bangalore
full stack developer course
full stack training in bangalore

Unknown said...

Clinical Research Courses

vanhelsing said...

Wonderful blog. Thanks for sharing a useful information.........
Cloud Computing Courses in Chennai
Cloud Computing Online Course

samuelmorkel said...
This comment has been removed by the author.
samuelmorkel said...

great blog. really inspiring.
Ranorex Test Automation Online Training

bruce wayne said...

Great blog.thanks for sharing such a useful information
QTP Training

bruce wayne said...

Great blog.thanks for sharing such a useful information
Salesforce CRM Training in Chennai

Karthik said...

Blog detailing is meaningful. Thanks.
Swift Online Class
Swift Online Training

Karthik said...

Blog detailing is meaningful. Thanks.
Best Online Swift Course
Swift Online Course

Rahul said...

Good Article! Useful for read and thanks for sharing.

Adhiban Group is a leading Financial Services in Coimbatore, India which offers Loans without/less Documents for Corporate Companies & Entrepreneurs.

Dhilshan said...

Happy to read the informative blog. Thanks for sharing
best german language institute in chennai
best german classes in chennai

Lokeswari said...

nice blog..

web designing course in chennai | online internships for civil engineering students | online internship for mechanical engineering | online internship for mba students | online internship for computer science students | online internship for biotech students | internships for ece students | internship for electrical engineering student | internship for ece students

David Fincher said...

Great post. Thanks for sharing such a useful blog.
Software testing training in Porur
Software testing training in chennai

David Fincher said...

Great post. Thanks for sharing such a useful blog.
dot net training in OMR
Dot net training in Chennai

David Fincher said...

This post is so interactive and informative.keep update more information...
Tally Course in Anna Nagar
Tally course in Chennai

Zonahobisaya said...

Coba menuju : paling muda
Coba menuju : Terbanyak
Coba menuju : Film Terbaru
Coba menuju : Profil
Coba menuju : Film Terbaru
Coba menuju : Film Terbaru
Coba menuju : Marco One Piece
Coba menuju : Profil

James said...

Specialty Alloys Market Status (2016-2020) and Forecast (2021E-2028F) by Region, Product Type & End-Use
Specialty Alloys market

Overview

At the beginning of a recently published report on the global Specialty Alloys market, extensive analysis of the industry has been done with an insightful explanation. The overview has explained the potential of the market and the role of key players that have been portrayed in the information that revealed the applications and manufacturing technology required for the growth of the global Specialty Alloys market.

Specialty Alloys market

French language classes in Chennai said...

Wonderful content as always, this is very informative and interesting
French Classes Online | Online French Classes

fairytail said...

Hey friend, it is very well written article, thank you for the valuable and useful information you provide in this post. Keep up the good work! FYI, Pet Care adda
how to activate flipkart axis bank credit card, the millionaire next door
,The Price Of Flowers Summary

TRVDIGITAL said...

Very nice post... thanks for sharing such a nice post
Start Selling On Amazon UAE

milka said...

Great post. keep sharing such a worthy information.
Mobile Application Testing Online Training

said...

I think you spend numerous effort and time updating your blog.
Web Design Sharjah
Web Designing Companies in Dubai

vepsun said...

Best AWS Training provided by Vepsun in Bangalore for the last 12 years. Our Trainer has more than 20+ Years
of IT Experience in teaching Virtualization and Cloud topics.. we are very delighted to say that Vepsun is
the Top AWS cloud training Provider in Bangalore. We provide the best atmosphere for our students to learn.
Our Trainers have great experience and are highly skilled in IT Professionals. AWS is an evolving cloud
computing platform provided by Amazon with a combination of IT services. It includes a mixture of
infrastructure as service and packaged software as service offerings and also automation. We have trained
more than 10000 students in AWS cloud and our trainer Sameer has been awarded as the best Citrix and Cloud
trainer in india.

Sruthi Karan said...

Excellent blog!!! I really enjoy to read your post and thanks for sharing!
Spousal Support Calculator
Spousal Support Virginia

milka said...

Great post. keep sharing such a worthy information.
CCNA Training Institutes In Chennai

Abdulla said...

PrintWay provides its customers a varied suite of printed cards. We have a history of over 6 years in the printing industry. We have produced business cards, pamphlets, flyers, brochures, etc.

Love said...

I signed up to to make it simpler to help my son progress.

SAP BW On Hana Realtime Online Support In India
Selenium with Python Free Live Online Demo Class
SAP QM Certification Interview Questions & Answers
Powershell Online Training Institute from India, Hyderabad
Best Windows Server Online Training

iteducationcentre said...
This comment has been removed by the author.
iteducationcentre said...

Such a wonderful post.
SQL Cousre in Pune

iteducationcentre said...

Great information you shared.Thanks
SQL Classes in Pune

queenarts said...

informative post
gold price today madurai
gold grt rate today


iteducationcentre said...

This blog post is incredibly informative and well-researched.Thanks for sharing it with us.
SQL Classes in Pune

SHIVAM SHARMA said...

informative blog, keep posting java course in satara

iteducationcentre said...

Nice post. Keep up with your work.
SQL training in Pune

VISWA Technologies said...

Thanks a lot for the blog. Really thank you! Really Great.Oracle EBS R12 Financials Online Training
SSRS Online Training
Oracle Fusion HCM Online Training
<a href="https://viswaonlinetrainings.com/courses/core-java-online-training/>CORE JAVA Online Training</a>

123tws webdesign company said...

useful and informative. keep post like this
web designing companies in coimbatore
real estate crm software india
graphic design in coimbatore
content writing coimbatore

IT TRAINING said...
This comment has been removed by the author.
«Oldest ‹Older   201 – 275 of 275   Newer› Newest»