- or download this
my %handler = (
HEADER => sub { ... },
TITLE => sub { ... },
...
}
$text .= " " . $curr_text;
}
- or download this
my %record;
my %handler = (
...
TITLE => sub { $record{TITLE} = $_[1] unless exists $record{TITLE}
+ },
# ...
);
- or download this
my $curr_rec = 0;
my @record;
...
},
# ...
);