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

C# Regex. วิธีจับคู่


เมธอดจะจับคู่อินสแตนซ์ของรูปแบบและใช้เพื่อดึงค่าตามรูปแบบ

ให้เราดูจอบเพื่อตรวจสอบ URL ที่ถูกต้อง

สำหรับสิ่งนั้น ให้ส่งนิพจน์ regex ในวิธี Matches

MatchCollection mc = Regex.Matches(text, expr);

ด้านบน expr คือนิพจน์ที่เราตั้งค่าให้ตรวจสอบ URL ที่ถูกต้อง

"^(http|http(s)?://)?([\w-]+\.)+[\w-]+[.com|.in|.org]+(\[\?%&=]*)?”

ข้อความที่เรากำหนดให้ตรวจสอบคือ URL เช่น

https://demo.com

ให้เราดูรหัสที่สมบูรณ์

ตัวอย่าง

using System;
using System.Text.RegularExpressions;
namespace Demo {
   class Program {
      private static void showMatch(string text, string expr) {
         MatchCollection mc = Regex.Matches(text, expr);
         foreach (Match m in mc) {
            Console.WriteLine(m);
         }
      }
      static void Main(string[] args) {
         string str = "https://demo.com";
         Console.WriteLine("Matching URL...");
         showMatch(str, @"^(http|http(s)?://)?([\w-]+\.)+[\w-]+[.com|.in|.org]+(\[\?%&=]*)?");
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

Matching URL...
https://demo.com