
Biblio::Document::Parser::Brody

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)").

use Biblio::Document::Parser::Brody;
my $parser = new Biblio::Document::Parser::Brody();
my @refs = $parser->parse(\*FILE_IO);
my @refs = $parser->parse($str);

Constructor method for class.
Parses a string $str and returns a list of unstructured reference strings.

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