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.
我需要一个以数字开头的字母数字字符串的正则表达式。表达式的长度应限制为 6。
此正则表达式用于数据输入限制。如果我没有先输入数字,它不应该让我输入字母。
除了 David B 的建议之外,如果您提及您正在使用的正则表达式的实现(PHP、JS 等),它还可以帮助我们帮助您。
但总的来说,这是您要查找的正则表达式。
\d[a-zA-Z]{5}