On 7/27/06, The Editor <editor at fast.st> wrote:
>
> If someone could supply me the code that would take the string
> $content and replace every occurence of "%0a%0a" with "\n" that should
> solve my data read problem.
$content = preg_replace("/%0a%0a/", "\n", $content);
Hagan