http://qs321.pair.com?node_id=106071


in reply to another way to split with limit

What exactly do you want to do?
If all that you want is to remove the `:' and print the string then just do:
$_ = "p:e:r:l"; $_ =~ s/://g; # substitue all the `:' by nothing print "$_\n";

Guillaume