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.
我试图只允许以下形式的字符串:.0.2or .1.2.3or .0.8.9.87。
.0.2
.1.2.3
.0.8.9.87
但是没有前导零。这是我到目前为止得到的^(\.[0-9])*$
^(\.[0-9])*$
这应该失败:.0.02
.0.02
如果我的要求正确,也许是这样的:
^(?:\.(?:0|[1-9]\d*))+$
它将是一个点.后跟数字,而不是前导 0,并且可以跟随任意数量的此类实例。
.