Community Patterns

Community Library Entry

0

Regular Expression
Created·2019-04-14 10:02
Flavor·ECMAScript (JavaScript)

/
[+-]?((\d+(\.\d*)?)|((\d*\.\d+)))(e[-+]?\d*)?
/
gm
Open regex in editor

Description

Matches: 1.0 .01 100. 1e-10 1.0e3 0.2e10

Submitted by anonymous