First, change your substitution regexp to: s/$pattern/' ' x length( $1 )/gie; ...note the use of $1 instead of $&. It is advisable to always avoid $& if possible for performance reasons.

Now to answer your question: Use a second regexp to keep it simple, and it should look like this:

$target_data =~ s/(\n{2,})/'\n' . ( ' ' x length( $1 ) ) /ge;

That converts any blank lines to a line with spaces in it equalling the number of blank lines found in a row. If you don't want the blank spaces to occupy a new line, remove the '\n' part from the right side of the substitution regexp.


Dave


In reply to Re: Replacing the pattern by davido
in thread Replacing the pattern by agynr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.