Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そのような形式の数値を検証する方法を見つけようとしています: XXXX または XXXX-XXXX
私は試した
/^\d{4}(-{1}\d{4})?/i
ただし、XXXX ではなく XXXX-XXXX 形式のみを検証します。
前もって感謝します
これを試して:
/\d{4}(-\d{4})?/
デモ: http://regexr.com?356sf
私はこれを試しました:
^\d{4}(-\d{4})?
ここ: http://regexpal.com/
最初の領域に正規表現を記述し、2 番目の領域で数値をテストできます。
1234 および 1234-1234 (任意の番号) で機能します。