About 9,020,000 results
Open links in new tab
  1. What is Regular Expression in C#? - GeeksforGeeks

    Jul 2, 2021 · In C#, Regular Expression is a pattern which is used to parse and check whether the given input text is matching with the given pattern or not. In C#, Regular Expressions are …

  2. .NET Regular Expressions - .NET | Microsoft Learn

    The System.Web.RegularExpressions namespace contains a number of regular expression objects that implement predefined regular expression patterns for parsing strings from HTML, …

  3. C# regex (With Examples) - Programiz

    A RegEx (Regular Expression) is a sequence of characters that defines a search pattern. In this tutorial, you will learn about the C# RegEx with the help of examples.

  4. C# Regex Examples (2023) - C# Corner

    Regex in C# defines a regular expression in C#. The Regex class offers methods and properties to parse a large text to find patterns of characters. In this article, you’ll learn how to use a …

  5. C# Regex: How Regular Expressions Work in C#, With Examples

    Sep 12, 2023 · C# is no exception, so today we bring you a C# regex guide. You’ll learn what regexes are, why you’d want to use them and how to get started in a comprehensive, …

  6. C# Regex Tutorial: What Is A C# Regular Expression - Software …

    Apr 1, 2025 · This C# Regex tutorial explains what is a regular expression in C#, its syntax, Regex class methods and how to use these methods with the help of examples.

  7. C# Regex - C# Tutorial

    To use this regular expression pattern in C# for matching, you will need to utilize the Regex class. First, import the System.Text.RegularExpressions namespace in the program: Second, create …

  8. How to Use Regular Expressions in C# - Datatas

    Regular expressions, also known as regex, are sequences of characters that define a search pattern. In C#, regular expressions are implemented using the `Regex` class. To start using …

  9. C# - Regular Expressions: A Beginner's Guide - C# Basic Tutorial

    Regular Expressions are your magnifying glass, helping you search, match, and manipulate text based on patterns. Cool, right? Now, let's look at some of the basic building blocks we use to …

  10. Regex Class (System.Text.RegularExpressions) | Microsoft Learn

    Initializes a new instance of the Regex class by using serialized data. Initializes a new instance of the Regex class for the specified regular expression, with options that modify the pattern and a …