Dieter Raber: Absätze formatieren

Beitrag lesen

Hallo Til,

Ich zitiere mal aus dem erwaehnten Posting:

Windows style newlines are like this:
<CR><LF> -> \r\n -> \015\012
Mac style like this:
<CR> -> \r -> \015
Unix style like this:
<LF> -> \n -> \012
\012 -> 10 -> \n
\015 -> 13 -> \r
You shouldn't use \n or \r for replacing, because \n for windows is on unix enviroments \r\n and on mac enviroments \r - so you won't match newlines of foreign systems.

Du solltest also besser Oktalwerte nehmen (\012 und \015) anstatt \n und \r. Und ob drei str_replace wirklich performanter sind als ein preg_replace, wage ich zu bezweifeln.

Gruß,

Dieter