我知道我的代碼是錯誤的,我試圖測試某些字符,並且只要它們存在於輸入字段中的每個字符,它就會傳遞true,否則傳遞false 。在JavaScript中爲特殊字符編寫正則表達式
function isChar(value) {
//Trying to create a regex that allows only Letters, Numbers, and the following special characters @ . - () # _
if (!value.toString().match(/@.-()#_$/)) {
return false;
} return true;
}
'.match(/ [A-Z0-9 @ \ - ()#_ $] /)' – Anonymous0day