clem_c_rock Posted October 16, 2006 Share Posted October 16, 2006 Hello,I have a Flash application that's sending data from a simple input dynamic text field to a php script that saves it to a database. I then retrieve the data from the database and export it to a csv file. I am having problems w/ the wrapped text from the flash application causing the csv file to display the text in a newline.When I try to detect the usual newline characters, (IE. \n, \r, \n\r) I am not finding any in the text.here's the line of php code i'm using to try to detect any newline chars:[code]if(preg_match("#[\n|\r|\r\n][ ]*$#", $row_export['data_dump'] ) ){ echo "Newline characters found!"; }else{ echo "NO NEWLINES OR CARRIAGE RETURNS"; }[/code]Is there any different newline or wrap characters that I could be testing for?Thanks,Clem C Link to comment https://forums.phpfreaks.com/topic/24123-detecting-word-wrap-new-line-characters/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.