Bug 21814: System preferences save button can be hidden by language menu
[koha.git] / C4 / ClassSplitRoutine / RegEx.pm
blob64e676299d922416d38996eaff93a5d590eba2ee
1 package C4::ClassSplitRoutine::RegEx;
3 # Copyright 2018 Koha Development Team
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use C4::Debug;
24 =head1 NAME
26 C4::ClassSplitRoutine::RegEx - regex call number sorting key routine
28 =head1 SYNOPSIS
30 use C4::ClassSplitRoutine;
32 my $cn_sort = C4::ClassSplitRoutine::RegEx::split_callnumber($cn_item, $regexs);
34 =head1 FUNCTIONS
36 =head2 split_callnumber
38 my $cn_split = C4::ClassSplitRoutine::RegEx::split_callnumber($cn_item, $regexs);
40 =cut
42 sub split_callnumber {
43 my ($cn_item, $regexs) = @_;
45 for my $regex ( @$regexs ) {
46 eval "\$cn_item =~ $regex";
48 my @lines = split "\n", $cn_item;
50 return @lines;
55 =head1 AUTHOR
57 Koha Development Team <http://koha-community.org/>
59 =cut