my $this = ' condition condition randomness other junk '; print "before: $this\n\n"; $this =~ s/\n\s*/ /g; print "after: $this\n"; __END__ before: condition condition randomness other junk after: condition condition randomness other junk