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.
我试图编写一个只允许 3 或 4 个字母数字并且还允许 % 和 * 的正则表达式,它们可以与字母一起使用。
例如: abc* 或 abc% 类似这样的东西。
您可以使用此正则表达式:
^[a-zA-Z0-9*%]{4,5}$
正则表达式解释:
^ - Line start [a-zA-Z0-9*%] - Alphanumeric (letters or digits) OR * OR % {4,5} - 4 or 5 of those $ - Line end