regex:numbers:decimal_places
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
regex:numbers:decimal_places [2022/09/20 23:09] – created peter | regex:numbers:decimal_places [2022/09/20 23:12] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - Numbers - Decimal places ====== | ====== Regex - Numbers - Decimal places ====== | ||
+ | |||
+ | ===== Numbers not beginning with 0 and maximum 2 decimals ===== | ||
+ | |||
+ | < | ||
+ | ^([1-9][0-9]*)+(.[0-9]{1, | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Positive or Negative numbers with maximum 2 decimals ===== | ||
+ | |||
+ | < | ||
+ | ^(\-)? | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Positive or Negative numbers and any decimal length ===== | ||
+ | |||
+ | < | ||
+ | ^(\-|\+)? | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Numbers with maximum 2 decimals ===== | ||
+ | |||
+ | < | ||
+ | ^[0-9]+(.[0-9]{2})? | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Numbers with 1-5 decimals ===== | ||
+ | |||
+ | < | ||
+ | ^[0-9]+(.[0-9]{1, | ||
+ | </ | ||
+ | |||
+ | ---- | ||
regex/numbers/decimal_places.1663715387.txt.gz · Last modified: 2022/09/20 23:09 by peter