What are you trying to get out of that mess? What should the output look
like?


Niklas


-----Original Message-----
From: Dennis Gearon [mailto:[EMAIL PROTECTED] 
Sent: 14. maaliskuuta 2003 7:51
To: [EMAIL PROTECTED]
Subject: [PHP] can't get any string replacements to clean this


All i get out of:
        str_replace
        ereg_replace
        preg_replace

is an empty string value.
Anybody know why?


<?PHP
   $bad_str = "             \t\t\t\\r\\\r\r\r\r\n\r\nFour
schore                  ...........and seven    \n\n\n\n\nr\r\r\rn\r years
ago, ,,,,,,,    ,,,,,,,our father created on tis planet
\t\t\t\\r\\\r\r\r\r\n\r\nFour ";

   echo( "<br>\nuncleaned
string-------------------------------------<br>\n");
   echo($bad_str . "<br>\nn" );
   echo( "<br>\ncleaned
--------------------------------------------<br>\n");

   //Nothing will clean on this line
   $bad_str = preg_replace( '\r', '\n', $bad_str );
   echo("</pre>\n");
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

###########################################
This message has been scanned by F-Secure Anti-Virus for Internet Mail. For
more information, connect to http://www.F-Secure.com/

###########################################
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to