Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我需要一个正则表达式,第一个字母需要是“L”大写,其余的只有数字,大小需要为 9。
实际上我正在使用这个:
Regex RgxUrl = new Regex("[^a-z0-9]");
谢谢。
你的正则表达式应该是
^L[0-9]{8}$
^标记字符串/行的开头并$标记字符串/行的结尾
^
$
{8}是一个匹配 8 位数字的限定符。
{8}