The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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.