my $xml = "one\ttwo\tthree\n"x5; $xml =~ s#(.*?)#${TableBody(\$1)}#gies; print $xml; sub TableBody { my $line_ref = shift; my $return_xml; foreach my $thing (split(/\t/, $$line_ref)) { $return_xml .= "$thing"; } return \"$return_xml"; }