in reply to Split Decision
Beats me, there should be no problem splitting on a '\n':
my $test = "this\nis\na\ntest"; + my @foo = split /\n/, $test; + print +join '*', @foo; [download]
/J\