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}$