Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
Business::FR::SIREN - Verify French Companies SIREN
SYNOPSIS
use Business::FR::SIREN;
$c = Business::FR::SIREN->new('000111222');
print $c->siren()." looks good\n" if $c->is_valid();
$c = Business::FR::SIRET->new();
$c->siren('000111222');
print "looks good\n" if $c->is_valid();
print "looks good\n" if $c->is_valid('000111222');
DESCRIPTION
This module verifies SIRENs, which are french companies identification. This module cannot tell if a SIREN references a real company, but it can tell you if the given SIREN is properly formatted.
See Business::FR::SIRET for more documentation.
COPYRIGHT
Copyright 2004
Fabien Potencier, fabpot@cpan.org
This software may be freely copied and distributed under the same terms and conditions as Perl.
SEE ALSO
perl(1), Business::FR::SIRET.