Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะค้นหาสตริงย่อยที่ตรงกันโดยใช้นิพจน์ทั่วไปใน 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