regex:numbers
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex:numbers [2022/09/20 22:57] – peter | regex:numbers [2022/09/20 23:13] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - Numbers ====== | ====== Regex - Numbers ====== | ||
- | [[Regex: | + | [[Regex: |
- | ---- | + | [[Regex: |
+ | [[Regex: | ||
- | 5 digits only | + | [[Regex: |
- | < | + | [[Regex: |
- | ^\d{5}$ | + | |
- | </ | + | |
- | ---- | + | [[Regex: |
- | Minimum 3 digits | + | [[Regex: |
- | < | + | [[Regex: |
- | ^\d{3,}$ | + | |
- | </ | + | |
- | ---- | ||
- | |||
- | 2-5 digits | ||
- | |||
- | < | ||
- | ^\d{2,5}$ | ||
- | </ | ||
---- | ---- | ||
- | 0 and numbers not begin with 0 | ||
- | < | ||
- | ^(0|[1-9][0-9]*)$ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Numbers not begin with 0 and maximum 2 decimals | ||
- | |||
- | < | ||
- | ^([1-9][0-9]*)+(.[0-9]{1, | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Positive or Negative numbers with maximum 2 decimals | ||
- | |||
- | < | ||
- | ^(\-)? | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Positive, 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, | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Positive Integer, excluding 0 | ||
- | |||
- | < | ||
- | ^[1-9]\d*$ | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | ^([1-9][0-9]*){1, | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | ^\+? | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Negative Integer, excluding 0 | ||
- | |||
- | < | ||
- | ^-[1-9]\d*$ | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | ^\-[1-9][0-9]*$ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Positive Integer | ||
- | |||
- | < | ||
- | ^\d+$ | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | ^[1-9]\d*|0$ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Negative Integer | ||
- | |||
- | < | ||
- | ^-[1-9]\d*|0$ | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | ^((-\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]*)))$ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Floating-point | ||
- | |||
- | < | ||
- | ^-? | ||
- | </ | ||
- | |||
- | ---- | ||
regex/numbers.1663714658.txt.gz · Last modified: 2022/09/20 22:57 by peter