按照你的要求编写的程序如下
正则表达式 ^[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();
}
}
}
送机怎么样