Regular Expressions 101

Library entries

0
pcre2

name vietnamese

kiểm tra tên tiếng việt
Submitted by anonymous - a month ago
0
pcre2

date description amount

-
Submitted by Me - a month ago
0
python

Extract structure from dates

1-12 / 2022
Submitted by anonymous - a month ago
0
python

auto-gpt capture command

auto-gpt capture command
Submitted by anonymous - a month ago
0
java

Pick uuidValue from jSON payload

.
Submitted by jeevan - a month ago

Floating point and scientific notation regex

Vote

0

Regular Expression
pcre2

/
^ (?: [+-]? # optional sign (?: # start a conditional group \d+ # either a nonzero number of digits | # or a decimal phrase \d* # optional digits preceding the decimal \.(?=\d) # a literal decimal followed by at least one digit \d* # optionally some more digits ) # note this group is mandatory! (?: # start an optional scientific notation group [eE] # the scientific notation character [+-]? # optional sign \d+ # after sci notation, you cannot go directly to a decimal )? ) $
/
gmx

Description

Loading markdown...
Submitted by Kevin Winner - 7 months ago