logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::Fix::marc_remove - remove marc (sub)fields

Description

       Remove (sub)fields in a MARC record

Inline

       This Fix can be used inline in a Perl script:

           use Catmandu::Fix::marc_remove as => 'marc_remove';

           my $data = { record => [...] };

           $data = marc_remove($data,'600');

Methods

marc_remove(MARC_PATH)
       Delete the (sub)fields from the MARC record as indicated by the MARC_PATH.

Name

       Catmandu::Fix::marc_remove - remove marc (sub)fields

See Also

       Catmandu::Fix::marc_add, Catmandu::Fix::marc_copy, Catmandu::Fix::marc_cut, Catmandu::Fix::marc_paste,
       Catmandu::Fix::marc_set

perl v5.38.2                                       2024-08-03                    Catmandu::Fix::marc_remove(3pm)

Synopsis

           # remove all marc 600 fields
           marc_remove('600')

           # remove the 245-a subfield
           marc_remove('245a')

See Also