Bas Jobsen wrote: > Op donderdag 07 februari 2002 23:58, schreef Michael Kimsal: > >>Looking for a regex (preg or ereg) to remove >>all 1, 2 and 3 character words. >> > > <? > $string="over deze regex loop ik nu al de hele dag en een uur te piekeren. 't > wil niet! of wel! l'a."; > $string=" ".$string; > while (preg_match("/\W\w{1,3}\W/i",$string)) > $string = preg_replace("/\W\w{1,3}\W/i", " ", $string); > $string=substr($string,1); > echo $string; > ?> >
This looks like it should do the trick - thank you. And thanks to everyone else who replied as well! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php