Pattern
/[-+]?(?:\d+\.\d*|\.\d+|\d+)(?:[eE][-+]?\d+)?/
Sample text
1.23e-4 -0.5 42 .25 not-a-numberTest this pattern in the editor
Decimals with optional exponent notation.
/[-+]?(?:\d+\.\d*|\.\d+|\d+)(?:[eE][-+]?\d+)?/
1.23e-4 -0.5 42 .25 not-a-numberTest this pattern in the editor