|
|
|
decimal : String
DetailsA string for the character used as the decimal point. Default
is ".".
|
|
|
|
eSigned : Boolean|Array
DetailsThe leading plus-or-minus sign on the exponent. Can be true,
false, or [true, false]. Default is [true, false], (i.e. will
match if it is signed or unsigned). flags in regexp.integer can be
applied.
|
|
|
|
exponent : Boolean|Array
DetailsExpress in exponential notation. Can be true, false, or [true,
false]. Default is [true, false], (i.e. will match if the
exponential part is present are not).
|
|
|
|
fractional : Boolean|Array
DetailsWhether decimal places are used. Can be true, false, or [true,
false]. Default is [true, false] which means optional.
|
|
|
|
places : Number
DetailsThe integer number of decimal places or a range given as "n,m". If
not given, the decimal part is optional and the number of places is
unlimited.
|