我只想在“。”之前有 1 到 5 位数字。以及“.”后面的 0 到 2 位数字。这就是我到目前为止的正则表达式。
^\d{1,5}\.?\d{0,2}$
1.00 -- match
11.01 -- match
111.10 -- match
1111.52 -- match
11111.23 -- match
.12 -- no match ... want to match
123456 -- match ... don't want to match because can take up to 5 integers before decimal
1234567 -- match ... don't want to match because can take up to 5 integers before decimal
谁能帮忙?