Bug 28572: Remove C4::Debug
[koha.git] / C4 / ClassSplitRoutine / RegEx.pm
1 package C4::ClassSplitRoutine::RegEx;
2
3 # Copyright 2018 Koha Development Team
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21
22 =head1 NAME
23
24 C4::ClassSplitRoutine::RegEx - regex call number sorting key routine
25
26 =head1 SYNOPSIS
27
28 use C4::ClassSplitRoutine;
29
30 my $cn_sort = C4::ClassSplitRoutine::RegEx::split_callnumber($cn_item, $regexs);
31
32 =head1 FUNCTIONS
33
34 =head2 split_callnumber
35
36   my $cn_split = C4::ClassSplitRoutine::RegEx::split_callnumber($cn_item, $regexs);
37
38 =cut
39
40 sub split_callnumber {
41     my ($cn_item, $regexs) = @_;
42
43     for my $regex ( @$regexs ) {
44         eval "\$cn_item =~ $regex"; ## no critic (StringyEval)
45     }
46     my @lines = split "\n", $cn_item;
47
48     return @lines;
49 }
50
51 1;
52
53 =head1 AUTHOR
54
55 Koha Development Team <http://koha-community.org/>
56
57 =cut