my $xml = "one\ttwo\tthree\n"x40; $xml =~ s#((?:[^<]+|<(?!/?tbody>))+(?:\s*(?:[^<]+|<(?!/?tbody>))+)*)#"\n".${TableBody(\$1)}."\n"#gies; print $xml; sub TableBody { my ($line) = @_; $temp = "$$line"; $temp =~s#$##; $temp =~s#\t##g; $temp ="$temp"; $temp =~s###g; $temp =~s###g; return \$temp; }