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.
我为 ma 应用程序用户名设置了一些规则,例如最少 3 个字符和最多 20 个字符,并且只允许使用小写字母和数字,并且只允许 2 个特殊章程,例如 . 而且_也只有一次。我怎样才能做到这一点。
使用正则表达式:
if(username.match(/^[a-z0-9_\.]{3,20}$/)==null) alert('Error!');