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.
私はこれを調査しようと試み、表現を何度も繰り返してみましたが、まだ正しくないようです。あきらめます、誰か助けてください。
テキスト ボックスがあり、テキスト ボックスの変更時に、テキストを regex.replace テキストに置き換えます。\d{6} の後に単一の . そして\d{1,4}
123456.1、123456.12、123456.123、123456.1234 を受け入れます
123.45612、aqwerty.12、123456..12 は受け入れません
このパターンを試しましたか?.多分あなたはで逃げるのを忘れた\
.
\
^\d{6}\.\d{1,4}$