Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: regex doubt on excluding

by Anonymous Monk
on Apr 21, 2014 at 08:44 UTC ( [id://1082996]=note: print w/replies, xml ) Need Help??


in reply to Re: regex doubt on excluding
in thread regex doubt on excluding

Yes, that's it, Preserve multiple empty lines. (but without white-spaces)

Replies are listed 'Best First'.
Re^3: regex doubt on excluding
by hdb (Monsignor) on Apr 21, 2014 at 08:46 UTC

    How about this?

    $string =~ s/^\s*?\n$/\n/mg;

    UPDATE: the regex is not working properly but this should, the \n and the $ are somewhat duplicate:

    $string =~ s/^\s*?\n/\n/mg;

      Thank you hdb... it worked...

      its working with $string =~ s/^\s*?\n/\n/mg; too... :-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1082996]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (8)
As of 2024-04-19 12:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found