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.
我正在尝试制作一个匹配此模式的正则表达式,
长度必须为 40 个字符,
只允许使用字母和数字,
不得包含空格,
不区分大小写,
到目前为止,我已经想出了这个,但它不起作用;
/^[0-9a-f]+$/i
谢谢
/^[0-9a-f]{40}$/i
应该做的伎俩。花括号中的数字定义了字符的数量。
试试这个正则表达式:
/^[\da-z]{40}$/i
如果你真的只想要字母 af 然后使用:
/^[\da-f]{40}$/i
试试这个:/^[0-9a-z]{40,40}$/i
/^[0-9a-z]{40,40}$/i