C# 用正则表达式判断判断一串字符是不是8-16 位字符,同时包含大小写,非数字开头

2024-11-02 14:20:34
推荐回答(2个)
回答1:

按照你的要求编写的程序如下

正则表达式 ^[A-Za-z][A-Za-z0-9]{7,15}$

using System;

using System.Text.RegularExpressions;

namespace MatchApplication{

 class Match{

  static void Main(string[] args){

   string str="A1ab23ca";

   string pattern = @"^[A-Za-z][A-Za-z0-9]{7,15}$";

   bool b=Regex.IsMatch(str,pattern);

   Console.WriteLine(b);

   Console.ReadKey();

  }

 }

}

回答2:

送机怎么样