• 用户名中的唯一数字必须在末尾。最后可以有零个或多个。
  • 用户名字母可以小写和大写。
  • 用户名必须至少两个字符长。两个字母的用户名只能使用字母字符。

  • 我正在尝试这个,但是我停滞了。 /\d+$\w+/gi

    最佳答案

    /^[a-z]{2,}\d*$/i是:

    ^     : the begining
    [a-z] : a character (a to z), you can add as many allowed characters as you want
    {2,}  : at least 2 of them
    \d*   : 0 or more digits
    $     : the end
    i     : ignore case sensetivity (both lowercases and uppercases are allowed)
    

    关于javascript - 使用正则表达式验证userName,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43810615/

    10-17 02:51