📌  相关文章
📜  检查字符串是否为字母数字 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:16.532000             🧑  作者: Mango

代码示例1
if (string.match(/^[0-9A-Za-z]+$/) === null) { 
 //is not alphanumeric
 }else{
 //it is alphanumeric
 }