in reply to Regex Substitution in sub

You can use hash here. It should have key-value pairs.
Example:
$interpret = { "45 F" => "Tunnel No Lunch FT", "F" => "Full Time No Clock" }; my $result = '45 F'; $result = $interpret->{$result}; print $result;
artist