Perl regex - exponential values -
what's regex match decimal number check not contain exponential values?
thanks help.
can match except if contains "e-", "e+", "e-" or "e+"?
the thing cost field, , can contain currency symbols, parenthesis , other characters that
without detailed specs it's not easy task using regular expressions. in opinion, regex inappropriate when know little format of input.
update after op's edit:
can match except if contains "e-", "e+", "e-" or "e+"?
that e.g. ^(?!.*[ee][+-]).*$
(using negative lookahead), matching more like…
Comments
Post a Comment