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

NAME

Biblio::Document::Parser::Brody

DESCRIPTION

Module that parses reference strings from a document. Relies on a reference section starting with a title "References", "Bibliography", or "Cited". Seperates references by prefixed number (e.g. "[1]" or "1.") or by year (e.g. "Smith, J (1992)").

SYNOPSIS

        use Biblio::Document::Parser::Brody;

        my $parser = new Biblio::Document::Parser::Brody();

        my @refs = $parser->parse(\*FILE_IO);
        my @refs = $parser->parse($str);

METHODS

$p = Biblio::Document::Parser::Brody->new([-debug=>1])

Constructor method for class.

@refs = $p->parse($str)

Parses a string $str and returns a list of unstructured reference strings.

AUTHOR

Written by Tim Brody <tdb01r@ecs.soton.ac.uk>