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.
我需要一个正则表达式来表示浮点数的正数或负数,小数点分隔符前最多 3 个数字,之后最多 6 个(只有 6 个)数字。
谁能帮我?
在 JavaScript 中 - 这将符合您的要求。但如果没有进一步的澄清,就没有什么可做的了:
/[+|-][0-9]{0,3}\.[0-9]{6}/g
干杯。
这是 Perl 正则表达式的味道。
对于 java 脚本:/[+|-]\d{1,3}\.\d{6}/
/[+|-]\d{1,3}\.\d{6}/
对于 java : "[+|-]\\d{1,3}\.\\d{6}"/* 在 java.util.regex 中使用模式和匹配器。*/
"[+|-]\\d{1,3}\.\\d{6}"