This js is regular, why does it cause the browser to jam?

var str = "aaaaaaaaaabbbbbbbbbbcccccccccc(";

// 
if (!/^\s*[a-zA-Z0-9]+(\s*[a-zA-Z0-9]+)*\s*$/.test(str)) {
    alert("");
}

// : cccccccccc 

additional requirements: only content is allowed to be a combination of [letters, numbers, spaces], but not all spaces.


the regularities of some patterns have serious performance problems (all possible substrings to match all possible subpatterns), such as the restriction that they cannot all be spaces should not be used.

  

< del > (/ ^ s [a-zA-Z0-9] + (s [a-zA-Z0-9] +) s $/). Compile (). Test (str) < / del >

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b34798-2bf2d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b34798-2bf2d.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?