我们的任务是验证输入字符串,需要使用 JavaScript 检查它是否是字母数字。字母数字字符串仅包含数字和字母字符,包括大写或小写字符,甚至不包含任何特殊字符或空格。
下面,我们将看到两种验证输入字符串的方法。
我们可以使用 charCodeAT() 方法来获取任意字符的 ASCII 值。在这里,我们将遍历字符串的每个字符并检查每个字符的 ASCII 值。 48 到 57 之间的 ASCII 码表示数字字符,97 到 122 之间表示小写字母字符,65 到 90 之间表示大写字母字符。
因此,如果我们发现任何字符的 ASCII 值不在上面给定的 ASCII 范围之间,我们就可以说该字符串不是字母数字。
用户可以按照以下语法使用 charCodeAT() 方法检查输入字符串是否为字母数字。
let charCode = char.charCodeAt(0); if (!(charCode > 47 && charCode < 58) && !(charCode > 96 && charCode < 123) && !(charCode > 64 && charCode < 91) ) { // string is not alphanumeric return; }
在上面的语法中,char 是单个字符。我们使用 charCodeAT() 方法来获取单个字符的 ASCII 值。之后,我们使用 if-else 语句来检查字符的 ASCII 码是否在数字和字母字符的 ASCII 值之间。
在下面的示例中,我们创建了两个包含各种字符的输入字符串。此外,我们还定义了 validateString() 函数。在 validateString() 函数中,我们使用 for-of 循环迭代每个字符串字符。另外,我们使用 charCodeAt() 方法,通过传递 0 作为参数来获取字符的 ASCII 值。
然后,我们检查是否有字符的 ASCII 码不在数字和字母字符的 ASCII 范围之间;我们可以说字符串不是字母数字。
<html> <body> <h3>Using the <i> for loop and charCodeAT() method </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <script> var output = document.getElementById('output'); let str1 = "aredsUADFSKH121342kjbrewdfv"; let str2 = "dfdrg rflrtke 435 3df;fd'gfdg"; function validateString(string) { for (let char of string) { let charCode = char.charCodeAt(0); if (!(charCode > 47 && charCode < 58) && !(charCode > 96 && charCode < 123) && !(charCode > 64 && charCode < 91) ) { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; return; } } output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } validateString(str1); validateString(str2); </script> </body> </html>
我们可以使用带有 new 关键字的 RegExp() 构造函数来创建正则表达式。它是一个模式,我们可以将输入字符串与正则表达式模式进行匹配,并基于此返回 true 或 false 布尔值。
用户可以按照以下语法使用正则表达式来验证字母数字字符串。
let strRegex = new RegExp(/^[a-z0-9]+$/i); let result = strRegex.test(string);
在上面的语法中,结果变量包含基于字符串是否为字母数字的布尔值。
^ - 表示字符串的开头。
[a-z0-9]+ - 仅表示 a 到 z 或 0 到 9 之间的字符。
$ - 表示字符串的结尾。
i – 这是用于不区分大小写字符串比较的正则表达式的标志。
在下面的示例中,我们通过传递各种字符串作为参数来调用 validateString() 函数。在函数中,我们创建了如上所述的常规解释。之后,我们通过将正则表达式作为引用并将输入字符串作为验证参数传递来使用 test() 方法。
如果 test() 方法返回 true,则输入字符串为字母数字且仅包含数字和字母字符;否则,该字符串不是字母数字。
<html> <body> <h3>Using the <i> Regular expression </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <script> var output = document.getElementById('output'); let str1 = "Welcome to the tutorialsPoint"; let str2 = "Hello123"; function validateString(string) { // Defining the regular expression let strRegex = new RegExp(/^[a-z0-9]+$/i); // match the regex with the string let result = strRegex.test(string); if (result) { output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } else { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; } } validateString(str1); validateString(str2); </script> </body> </html>
在下面的示例中,我们使用 Prompt () 方法从用户处获取字符串。之后,我们使用正则表达式来验证字符串,就像我们在上面的示例中使用的那样,但这里我们使用了不同的正则表达式。
这里,[^a-zA-Z0-9]代表任何不在a到z、A到Z、0到9之间的字符。因此,如果字符串不是,test()方法返回true字母数字和 false 对于字母数字字符串。
<html> <body> <h3>Using the <i> Regular expression </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <button onClick = "getInputAndValidate()"> Validate random string </button> <script> var output = document.getElementById('output'); function getInputAndValidate() { let string = prompt("Enter a string to validate", "1232dwe"); let strRegex = new RegExp(/[^a-zA-Z0-9]/); // match the regex with the string let result = strRegex.test(string); if (!result) { output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } else { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; } } </script> </body> </html>
我们在本教程中学习了验证字母数字字符串。我们使用两种不同的正则表达式来验证字母数字字符串。另外,我们已经学习了使用 for 循环和 charCodeAT() 方法的简单方法,但它的时间效率不高,因此不推荐。
以上是如何使用 JavaScript 验证输入是字母数字还是非字母数字?的详细内容。更多信息请关注PHP中文网其他相关文章!