Users Online

· Guests Online: 131

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

Regular Expression Pattern in C#

Regular Expression Pattern in C#

 

 

 

This is a C# Program to illustrate regular expression pattern.

Problem Description

This C# Program Illustrates Regular Expression Pattern.

Problem Solution

Here the Regex class is used for representing a regular expression and the words that start with the given letter is displayed.

Program/Source Code

Here is source code of the C# Program to Illustrate Regular Expression Pattern. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to Illustrate Regular Expression Pattern
 */
using System;
using System.Text.RegularExpressions;
namespace Application
{
    class Program
    {
        private static void showMatch(string text, string expr)
        {
            Console.WriteLine("The Expression : " + expr);
            MatchCollection m = Regex.Matches(text, expr);
            foreach (Match m1 in m)
            {
                Console.WriteLine(m1);
            }
        }
        static void Main(string[] args)
        {
            string str = "Sanfoundry , a high end Technology Training company";
            Console.WriteLine("Matching words that start with 'S': ");
            showMatch(str, @"\bS\S*");
            Console.ReadKey();
        }
    }
}
Program Explanation

This C# program is used to illustrate regular expression pattern. We have defined a sentence in ‘str’ string variable. Then we are calling the showMatch() procedure by passing the str and expr variable values as an argument.

 

The showMatch() procedure is used to find the matching words that start with ‘S’. Here the Regex class is used for representing a regular expression and the words that start with the given letter are displayed.

Runtime Test Cases
 
Matching Words that Starts With 'S' : 
The Expression : \bs\s*
Sanfoundry

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 1.19 seconds
10,807,479 unique visits