JavaScript regular judgment Password type (pure alphanumeric start + any character)

Source: Internet
Author: User

Let's take a look at the regular rules.

Text

/^ (\d+) $/corresponds to "pure digits"
/^ ([a-za-z]+) $/corresponds to "pure letter"
/^ ([a-za-z].+) $/corresponds to "beginning of letter + any character"
/^ ([0-9a-za-z]+) $/corresponds to "number + letter any combination"
/^ ([\s\s]+) $/corresponding "not categorized"


Example

The code is as follows Copy Code

function Test (str, RE, msg) {
var ret = Str.match (Re | |/^ (\d+) $|^ ([a-za-z]+) $|^ ([a-za-z].+) $|^ ([0-9a-za-z]+) $|^ ([\s\s]+) $/);
var msg = MSG | | ["", "pure digit", "pure Letter", "beginning of letter + any character", "number + letter any combination", "not classified"];
var i = 0;
while (ret[++i] = = undefined);
return msg[i];
}

Test

The code is as follows Copy Code

Console.log (Test ("123"));
Console.log (Test ("SSS"));
Console.log (Test ("123xx"));
Console.log (Test ("a123xx"));
Console.log (Test ("%$#@"));

You can see that using a regular and an array completes the effectiveness.
In fact, the idea is very simple, using the regular capture group to correspond to the characters in the array.

  code is as follows copy code

/^ (\d+) $|^ ( [a-za-z]+) $|^ ([a-za-z].+) $|^ ([0-9a-za-z]+) $|^ ([\s\s]+) $/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.