Introduction

A regular expression is a pattern that describes a string through the use of special characters that denote a specific bit of text to match. The use of regular expression is not a new concept in programming. For regex to work, it needs to use a regex engine that does all the heavy lifting.

In the .NET Framework, Microsoft has provided for the use of regex. To use regex, you will need to import the System.Text.RegularExpressions assembly to your project. This will allow the compiler to use your regex pattern and apply it to the specific text you need to match.

Secondly, regex have a specific set of metacharacters that hold special meaning to the regex engine. These characters are [ ], { }, ( ), *, +, , ?, |, $, ., and ^.

The use ...

Get C# 7 and .NET Core Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.