User Tools

Site Tools


regex:numbers

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
regex:numbers [2022/09/20 22:46] peterregex:numbers [2022/09/20 23:13] (current) peter
Line 1: Line 1:
 ====== Regex - Numbers ====== ====== Regex - Numbers ======
  
-[[Regex:Numbers|Numbers]]+[[Regex:Numbers:0 and numbers not beginning with 0|0 and numbers not beginning with 0]]
  
-----+[[Regex:Numbers:Decimal places|Decimal places]]
  
-Numbers only+[[Regex:Numbers:Floating-point|Floating-point]]
  
-<code regex> +[[Regex:Numbers:Integers|Integers]]
-^[0-9]*$ +
-</code>+
  
-----+[[Regex:Numbers:Numbers only|Numbers only]]
  
-2. 5 digits only+[[Regex:Numbers:Minimum number of digits|Minimum number of digits]]
  
-^\d{5}$+[[Regex:Numbers:Range of digits|Range of digits]]
  
-3. Minimum 3 digits+[[Regex:Numbers:Specific number of digits only|Specific number of digits only]]
  
-^\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,2})?+
- +
-7. Positive or Negative numbers with maximum 2 decimals +
- +
-^(\-)?\d+(\.\d{1,2})?+
- +
-8. Positive, Negative numbers and any decimal length +
- +
-^(\-|\+)?\d+(\.\d+)?+
- +
-9. Numbers with maximum 2 decimals +
- +
-^[0-9]+(.[0-9]{2})?+
- +
-10. Numbers with 1-5 decimals +
- +
-^[0-9]+(.[0-9]{1,5})?+
- +
-11. Positive Integer, excluding 0 +
- +
-^[1-9]\d*$ +
-OR +
-^([1-9][0-9]*){1,3}$ +
-OR +
-^\+?[1-9][0-9]*$ +
- +
-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?\.0+|0$ +
- +
-16. Negative floating-point+
  
-^((-\d+(\.\d+)?)|(0+(\.0+)?))$ 
-OR 
-^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ 
-OR 
-^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|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 
  
-^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$ 
regex/numbers.1663714011.txt.gz · Last modified: 2022/09/20 22:46 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki