
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find Matching Substring Using Regular Expression in C#
Our string is −
string str = " My make ";
Use the following regular expression to find the substring "make"
@"\bmake\b"
Here is the complete code −
Example
using System; using System.Text.RegularExpressions; namespace RegExApplication { public class Program { private static void showMatch(string text, string expr) { Console.WriteLine("The Expression: " + expr); MatchCollection mc = Regex.Matches(text, expr); foreach(Match m in mc) { Console.WriteLine("Found:" + m); } } public static void Main(string[] args) { string str = "My make"; Console.WriteLine("Matching words start with 'm' and ends with 'e':"); showMatch(str, @"\bmake\b"); } } }
Output
Matching words start with 'm' and ends with 'e': The Expression: \bmake\b Found:make
Advertisements