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

NAME

MARC::Spec::Parser - parses a MARCspec as string

SYNOPSIS

    use MARC::Spec::Parser;
    
    my $parser = MARC::Spec::Parser->new('245$a');
    
    my $ms = $parser->marcspec;

    say ref $ms; # MARC::Spec

DESCRIPTION

MARC::Spec::Parser parses a MARCspec as string into a MARC::Spec. MARC::Spec is a MARCspec - A common MARC record path language parser and validator.

METHODS

new(Str)

Create a new MARC::Spec::Parser instance. Parameter must be a MARCspec as string.

ATTRIBUTES

spec

Obligatory. The parameter string the MARC::Spec::Parser was instantiated with.

marcspec

Instance of MARC::Spec.

AUTHOR

Carsten Klee <klee at cpan.org>

CONTRIBUTORS

  • Johann Rolschewski, <jorol at cpan>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Carsten Klee.

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

BUGS

Please report any bugs to https://github.com/MARCspec/MARC-Spec/issues

SEE ALSO