Computer >> Máy Tính >  >> Lập trình >> C#

In chữ cái đầu tiên của mỗi từ trong một chuỗi bằng C # regex

Giả sử chuỗi của chúng tôi là -

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

Sử dụng Cụm từ Thông dụng sau để hiển thị chữ cái đầu tiên của mỗi từ -

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

Đây là mã hoàn chỉnh -

Ví dụ

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

Đầu ra

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