The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Business::SWIFT - Validate SWIFT/BIC Bank identifiers.

VERSION

Version 0.01

SYNOPSIS

This module implements the SWIFT BIC format validation.

It checks if the given SWIFT BIC code is well-formed according to the ISO 9362 Specification. It does not check if the code is a valid actual bank code.

    use Business::SWIFT;

    if ( Business::SWIFT->validateBIC('DEUTDEFF') ){
        .. do stuff ..
    }

Based on the following specification: http://en.wikipedia.org/wiki/ISO_9362

FUNCTIONS

validateBIC

Returns a true value if the given BIC code is correct. False otherwise.

Code letters have to be uppercase.

This is a class method.

Usage example:

    if ( Business::SWIFT->validateBIC('DEUTDEFF') ){
       .. do stuff ..
    }
    

AUTHOR

Jerome Eteve <jerome at eteve.net>

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-business-swift at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Business-SWIFT. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Business::SWIFT

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2009 Careerjet, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.