ホームページ > 記事 > ウェブフロントエンド > 正規表現を使用して、ユーザーが入力した銀行カード番号を確認します (コード付き)
今回は、ユーザーが入力した銀行カード番号を正規表現を使用して検証するための注意事項を紹介します。以下は実際的なケースです。見てみましょう。
//JS 正則化により、ユーザーが入力した銀行カード番号の制御と書式設定が実現します
<script language="javascript" type="text/javascript"> function formatBankNo (BankNo){ if (BankNo.value == "") return; var account = new String (BankNo.value); account = account.substring(0,22); /*帐号的总数, 包括空格在内 */ if (account.match (".[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{7}") == null){ /* 对照格式 */ if (account.match (".[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{7}|" + ".[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{7}|" + ".[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{7}|" + ".[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{7}") == null){ var accountNumeric = accountChar = "", i; for (i=0;i<account.length;i++){ accountChar = account.substr (i,1); if (!isNaN (accountChar) && (accountChar != " ")) accountNumeric = accountNumeric + accountChar; } account = ""; for (i=0;i<accountNumeric.length;i++){ /* 可将以下空格改为-,效果也不错 */ if (i == 4) account = account + " "; /* 帐号第四位数后加空格 */ if (i == 8) account = account + " "; /* 帐号第八位数后加空格 */ if (i == 12) account = account + " ";/* 帐号第十二位后数后加空格 */ account = account + accountNumeric.substr (i,1) } } } else { account = " " + account.substring (1,5) + " " + account.substring (6,10) + " " + account.substring (14,18) + "-" + account.substring(18,25); } if (account != BankNo.value) BankNo.value = account; } </script>
<input type="text" value="" size="25" onkeyup="formatBankNo(this)" onkeydown="formatBankNo(this)" name="account" id="account">
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、 の他の関連記事に注目してください。 PHPの中国語サイトです!
推奨読書:
ID 番号と電子メール アドレスを確認し、チェックされた正規表現がどのようなものであるかを判断します
多くの場合、次の 15 の規則ルールフロントエンドフォームの検証
以上が正規表現を使用して、ユーザーが入力した銀行カード番号を確認します (コード付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。