#!/usr/bin/perl use strict; use warnings; local $/; my $txt = ; $txt =~ s/\n\|/ /g; print $txt; __DATA__ foo | bar baz |qux fred |wilma barney #### foo | bar baz qux fred wilma barney