Scientific Notation Regex Pattern

Validates numbers in scientific notation (e.g. 1.5e10, -3E-4).

Pattern
^-?\d+(\.\d+)?[eE][+-]?\d+$

Tested examples

1.5e10
3E+4
-2.5e-3
1.5
e10
abc

Test it live

Live Regex TesterJS
0 matches
/
/g
1.5e10
3E+4
-2.5e-3

Use it in your language

Use it in
// JavaScript / Node.js
const regex = /^-?\d+(\.\d+)?[eE][+-]?\d+$/;
const value = "1.5e10";
const isMatch = regex.test(value);
console.log(isMatch); // true / false

// Extract all matches
const matches = value.match(/^-?\d+(\.\d+)?[eE][+-]?\d+$/g) || [];

Tags

Frequently asked questions

How do I use the Scientific Notation regex pattern in JavaScript?
Wrap the pattern in slashes: const re = /^-?\d+(\.\d+)?[eE][+-]?\d+$/; — then call re.test(value) to check a single value, or value.match(re) to find matches. The "Use it in" snippets above give you the exact code for 9 languages.
Is this scientific notation regex production-ready?
Yes — every pattern in the library is tested against valid and invalid examples. Still, regex is one layer in a defense-in-depth strategy: pair it with server-side validation (e.g. Luhn for credit cards, mod-97 for IBAN, real DNS lookup for emails) for critical inputs.
Why does my pattern fail in another language?
Different regex engines (PCRE, Java, Python, Go's RE2) support slightly different syntax. The most common gotchas: lookbehinds (not in RE2), named groups syntax, and how backslashes need to be escaped inside string literals. The code snippets above already escape correctly for each language.
Can I edit this pattern and test it live?
Yes — use the live tester above. Type your test string and toggle flags (g, i, m, s, u, y) to see matches highlighted instantly, including capture groups.

Related patterns

See all Numbers

Browse the full library — 250 tested regex patterns across 16 categories.