regex:numbers:floating-point
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
regex:numbers:floating-point [2022/09/20 23:03] – created peter | regex:numbers:floating-point [2022/09/20 23:05] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - Numbers - Floating-point ====== | ====== Regex - Numbers - Floating-point ====== | ||
- | [[Regex: | + | ===== Floating-point ===== |
+ | |||
+ | < | ||
+ | ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0? | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Positive floating-point | ||
+ | |||
+ | < | ||
+ | ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0? | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Negative floating-point | ||
+ | |||
+ | < | ||
+ | ^((-\d+(\.\d+)? | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | ^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0? | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | ^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$ | ||
+ | </ | ||
---- | ---- | ||
regex/numbers/floating-point.1663715019.txt.gz · Last modified: 2022/09/20 23:03 by peter