http://www.perlmonks.org?node_id=238271


in reply to Difficulty Substituting Vertical Tab With Newline

Vertical tab is octal char 013 in ASCII, so if you have correctly slurped your data into $fmt_edi (which I don't think you have) the following should work.
$fmt_edi =~ s/\013/\n/g;

-Blake