摘要:
正则表达式: ^[A-Za-z0-9]{5}-[A-Za-z0-9]{5}-[A-Za-z0-9]{5}-[A-Za-z0-9]{5}-[A-Za-z0-9]{5}$ 改进: ^([A-Za-z0-9]{5}-){4}[A-Za-z0-9]{5}$ 解释: 1. ^ 为开始符,表示将要匹配的字符串, 阅读全文
摘要:
代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using Syst 阅读全文