in reply to Re: Easy Split
in thread Easy Split

Why are you removing the colons?
map {s/\\://g;$_}
should be
map { (my $s = $_) =~ s/\\(.)/$1/sg; $s }

Update: hum... The OP did show a lack of colons in the desired output. If that's truly what he wants,

map {s/\\://g;$_}
should be
map { my $s = $_; $s =~ s/\\(.)/$1/sg; $s =~ s/://g; $s }