var validate = /^[a-zA-Z0-9]{4}$/;
この検証を使用して、数値または英数字のいずれかを入力しています。
Indexof("@") == 0 or # ,%,&
インデックスも。
しかし今、私はチェックする必要があります
var isAccumMatch = (AccumulationString.indexOf("@") == 0 || AccumulationString.indexOf("#") == 0 || AccumulationString.indexOf("%") == 0 || AccumulationString.indexOf("&") == 0);
if(isAccumMatch)
{
var isAMatch = AccumulationString.length == 5 && validateACMSTR.test(AccumulationString);
if(!isAMatch)
{
alert("Value should be numeric or alpha numeric followed by @,#,&,%");
return false;
}
}
@,#,%,&
最初の文字に続いて数字または英数字を検証する方法を、どのボディでも助けてくれますか?
User Input : @A234, &5674, %ABC1, #123A