in reply to Re: Re: removing carriage returns in text area (cgi)
in thread removing carriage returns in text area (cgi)

Because tr/// and s/// do different things. tr/// works on character list, while s/// works on patterns.

Read Regexp Quote-Like Operators in [perldoc://perlop.

  • Comment on Re: Re: Re: removing carriage returns in text area (cgi)