in reply to Eliminating leading spaces
$_="a1: a, b, c, e"; my @tokens=split / +/; for my $i (1..(scalar(@tokens)-1)) { print "\"$tokens[$i]\"\n"; }
"a," "b," "c," "d," "e"
metadoktor
"The doktor is in."