NAME
String::Numeric::Regexp - Regular expressions for matching numeric values
SYNOPSIS
if (/\A$UInt32\z/o) {
print "ok"
}
DESCRIPTION
Provides regexps to match numeric values. These are used internally by String::Numeric::PP
. Please see String::Numeric for expected matches.
REGEXPS
$Float_re
$Decimal_re
$Numeric_re
Alias to $Float_re
.
$Int_re
$Int8_re
$Int16_re
$Int32_re
$Int64_re
$UInt_re
$UInt8_re
$UInt16_re
$UInt32_re
$UInt64_re
EXPORTS
None by default. Regexps can either be imported individually or in sets grouped by tag names. The tag names are:
SEE ALSO
AUTHOR
Christian Hansen chansen@cpan.org
COPYRIGHT AND LICENSE
Copyright 2009-2010 Christian Hansen.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.