我需要使用正则表达式验证一些输入。
以下是一些示例用例和预期结果。
0001 - Matched
001 - Matched
01 - Matched
00.12312 - Matched
000.1232 - Matched
1 - Not matched
20 - Not matched
0.1 - Not matched
0.123123 - Not matched
像这样的正则表达式会是什么样子?如果第一个字符是0
第二个字符,numerical[0-9]
那么它是无效的。
我已经尝试过了,但它不起作用。
[0][0-9]