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

พิมพ์อักษรตัวแรกของแต่ละคำในสตริงโดยใช้ C# regex


สมมติว่าสตริงของเราคือ −

string str = "The Shape of Water got an Oscar Award!";

ใช้นิพจน์ทั่วไปต่อไปนี้เพื่อแสดงอักษรตัวแรกของแต่ละคำ -

@"\b[a-zA-Z]"

นี่คือรหัสที่สมบูรณ์ -

ตัวอย่าง

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(m);
         }
      }
      public static void Main(string[] args) {
         string str = "The Shape of Water got an Oscar Award!";
         Console.WriteLine("Display first letter of each word!");
         showMatch(str, @"\b[a-zA-Z]");
      }
   }
}

ผลลัพธ์

Display first letter of each word!
The Expression: \b[a-zA-Z]
T
S
o
W
g
a
O
A