Help for this page
$zipfile =~ /(?:A|B)FILE_(\d+)/; $day = $1;
$zipfile =~ /[AB]FILE_(\d+)/; $day = $1;
($day) = $zipfile =~ /[AB]FILE_(\d+)/;