c# 车牌号提取

 

            string carNumber = "我的车冀R445541是多少";

            

            MatchCollection mcCarNumber = Regex.Matches(carNumber, @"([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1})");
            foreach (Match match in mcCarNumber)
            {
                var result = match.Value;
                Console.WriteLine(result);
            }
            Console.ReadLine();

 

posted @ 2021-10-08 17:49  星星c#  阅读(484)  评论(0编辑  收藏  举报