Einzelnen Beitrag anzeigen

Benutzerbild von Delphi-Freak
Delphi-Freak

Registriert seit: 26. Sep 2004
Ort: Wien Nähe (Österreich)
321 Beiträge
 
Delphi 2006 Architect
 
#9

Re: [PHP] unnötige leerzeichen entfernen

  Alt 26. Sep 2004, 17:00
Halli Hallo!
Geht das nicht auch ohne reguläre Ausdrücke, in etwa so:
Code:
<?php
$text = 'blabla         5';
while(strpos($text,' ') !== false) {
   $text = str_replace(' ',' ',$text);
}
?>
Bei mir, auf jeden Fall, funzzt es
LG
Gerhard Pfister
*
»To him who loves us and has freed us from our sins by his blood [...] be glory and power for ever and ever! Amen.« (Revelation*1,*5?6)
  Mit Zitat antworten Zitat