Regular Expression for field must contain at least 2 non-space alphanumeric characters

后端 未结 1 1723
闹比i
闹比i 2021-01-27 01:57

Rule: field must contain at least 2 non-space alphanumeric characters.

please any one can guide us how to write the regular expression

thanks in advance....

1条回答
  •  鱼传尺愫
    2021-01-27 02:21

    Match one alphanumeric character followed by zero or more characters followed by another alphanumeric character:

    \w.*\w
    

    If the validation automatically adds ^ and $, you have to match the characters before and after also:

    .*\w.*\w.*
    

    The \w code matches A-Z, a-z, 0-9 and _. If you have a different definition for aplhanumeric characters, you can use a set of characters instead, for example:

    [A-Za-z0-9].*[A-Za-z0-9]
    

    0 讨论(0)
提交回复
热议问题