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:46] – peter | regex:numbers [2022/09/20 23:13] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - Numbers ====== | ====== Regex - Numbers ====== | ||
- | [[Regex: | + | [[Regex: |
- | ---- | + | [[Regex: |
- | Numbers | + | [[Regex:Numbers: |
- | <code regex> | + | [[Regex: |
- | ^[0-9]*$ | + | |
- | </ | + | |
- | ---- | + | [[Regex: |
- | 2. 5 digits | + | [[Regex: |
- | ^\d{5}$ | + | [[Regex: |
- | 3. Minimum 3 digits | + | [[Regex: |
- | ^\d{3,}$ | ||
- | 4. 2-5 digits | + | ---- |
- | + | ||
- | ^\d{2,5}$ | + | |
- | + | ||
- | 5. 0 and numbers not begin with 0 | + | |
- | + | ||
- | ^(0|[1-9][0-9]*)$ | + | |
- | + | ||
- | 6. Numbers not begin with 0 and maximum 2 decimals | + | |
- | + | ||
- | ^([1-9][0-9]*)+(.[0-9]{1, | + | |
- | + | ||
- | 7. Positive or Negative numbers with maximum 2 decimals | + | |
- | + | ||
- | ^(\-)? | + | |
- | + | ||
- | 8. Positive, Negative numbers and any decimal length | + | |
- | + | ||
- | ^(\-|\+)? | + | |
- | + | ||
- | 9. Numbers with maximum 2 decimals | + | |
- | + | ||
- | ^[0-9]+(.[0-9]{2})? | + | |
- | + | ||
- | 10. Numbers with 1-5 decimals | + | |
- | + | ||
- | ^[0-9]+(.[0-9]{1, | + | |
- | + | ||
- | 11. Positive Integer, excluding 0 | + | |
- | + | ||
- | ^[1-9]\d*$ | + | |
- | OR | + | |
- | ^([1-9][0-9]*){1, | + | |
- | OR | + | |
- | ^\+? | + | |
- | + | ||
- | 12. Negative Integer, excluding 0 | + | |
- | + | ||
- | ^-[1-9]\d*$ | + | |
- | OR | + | |
- | ^\-[1-9][0-9]*$ | + | |
- | + | ||
- | 13. Positive Integer | + | |
- | + | ||
- | ^\d+$ | + | |
- | OR | + | |
- | ^[1-9]\d*|0$ | + | |
- | + | ||
- | 14. Negative Integer | + | |
- | + | ||
- | ^-[1-9]\d*|0$ | + | |
- | OR | + | |
- | ^((-\d+)|(0+))$ | + | |
- | + | ||
- | 15. Positive floating-point | + | |
- | + | ||
- | ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ | + | |
- | OR | + | |
- | ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0? | + | |
- | + | ||
- | 16. 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]*)))$ | ||
- | 17. Floating-point | ||
- | ^-? |
regex/numbers.1663714011.txt.gz · Last modified: 2022/09/20 22:46 by peter