http://www.perlmonks.org?node_id=16360


in reply to fixing what textareas do to input

Perhaps: $data =~ s/(\r\n|\n\r|\r)/\n/g This converts CR's, LF's, and any combination of the two into a single newline (I hope... haven't tested it).

Replies are listed 'Best First'.
RE: Re: fixing what textareas do to input
by antihec (Sexton) on Jun 05, 2000 at 14:27 UTC
    If you output the textarea input in HTML you might consider changing the right hand side of Zoogies regexp to /<br>\n/g
    -- bash$ :(){ :|:&};:
RE: Re: fixing what textareas do to input
by mcwee (Pilgrim) on Jun 06, 2000 at 00:40 UTC
    Would $data =~ s/(\r|\n){1,2})/\n/g work as well? (Unfortunately, I don't have time to test it out-- and I'm notorious for FUing my regexes the first time out.)

    The Autonomic Pilot