কম্পিউটার

C# এ রেগুলার এক্সপ্রেশন ব্যবহার করে একটি ম্যাচিং সাবস্ট্রিং কিভাবে খুঁজে পাবেন?


আমাদের স্ট্রিং হল −

string str = " My make ";

"make"

সাবস্ট্রিং খুঁজে পেতে নিম্নলিখিত রেগুলার এক্সপ্রেশন ব্যবহার করুন
@"\bmake\b"

এখানে সম্পূর্ণ কোড −

উদাহরণ

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");
      }
   }
}

আউটপুট

Matching words start with 'm' and ends with 'e':
The Expression: \bmake\b
Found:make

  1. পাইথনে রেগুলার এক্সপ্রেশন ব্যবহার করে একটি ইমেল আইডি কিভাবে যাচাই করবেন?

  2. পাইথন রেগুলার এক্সপ্রেশন ব্যবহার করে ট্যাব এবং নিউলাইনগুলি কীভাবে সরিয়ে ফেলা যায়?

  3. রেগুলার এক্সপ্রেশন ব্যবহার করে পাইথনে স্ট্রিংয়ের শেষে কীভাবে মিলবে?

  4. রেগুলার এক্সপ্রেশন ব্যবহার করে পাইথনে স্ট্রিং এর শুরুতে কিভাবে মেলে?