@things = split /,/ => $input; # works use constant DELIMITER => ','; @things = split DELIMITER => $input; # BREAKS (treats DELIMITER as a quoted word) @things = split DELIMITER, $input; # works