NAME

Text::vCard - a package to parse, edit and create vCards (RFC 2426)

use Text::vCard;
my $loader = Text::vCard->loader( source => "xmas_card_list.vcf" );

while (my $vcard = $loader->next) {
    $vcard->....;
}

# or even sexier

while (my $vcard = <$loader> ) {
    $vcard->...;
}

DESCRIPTION

Still under active development.

EXPORT

None by default.

AUTHOR

Leo Lapworth, LLAP@cuckoo.org

COPYRIGHT

Copyright (c) 2003 Leo Lapworth. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

ACKNOWLEDGEMENTS

Jay J. Lawrence for being a fantastic person to bounce ideas of and for creating Text::vFile from our discussions.

SEE ALSO

Text::vFile::Base, Text::vFile.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 14:

Unknown directive: =SYNOPSIS