Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: regexp for scalar containing a mixture of LF & CRLF

by Paladin (Vicar)
on Dec 09, 2004 at 23:03 UTC ( [id://413711]=note: print w/replies, xml ) Need Help??


in reply to regexp for scalar containing a mixture of LF & CRLF

What about something like:
s/\015?\012/\n/g;
Which will replace all LF and CRLF to whatever your local line ending character is.

Note: The /m modifier only affects the ^ and $ anchors, so is doing nothing in your RE since you have neither. The /s only affects what the . meta-character matches, and again, since you aren't using it, does nothing.

Replies are listed 'Best First'.
Re^2: regexp for scalar containing a mixture of LF & CRLF
by NateTut (Deacon) on Dec 09, 2004 at 23:56 UTC
    Thanks but it didn't work. See my next post for the ugly way I finally got it to work.

    Doug

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-25 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found