#!/usr/bin/perl use strict; my $body = "Dies ist mein [HAUS]\n\n\nUnd ich wohne darin"; $body =~ s/(?!\])\n+/
/gs; print $body;