in reply to splitting a line by user-defined separators

$sep = quotemeta(";:-"); while (<>) { @line = split /[$sep]/; }


holli, /regexed monk/