Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can you remove CR LF from a string? 2

Status
Not open for further replies.

Zych

IS-IT--Management
Apr 3, 2003
313
US
Hello,

I have a file that has CR/LF's and I need them replaced with a space or " ". How can I do this?

Thanks,

Zych
 
Still the same function:
Code:
str_replace("\n"," ",$str);
str_replace("\r"," ",$str);
 
Or
Code:
str_replac(array("\n","\r"),' ',$str);

Untested.

Ken
 
Perfect!

Thanks,

Zych
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top