Re: [PHP] Regex function needed

2002-02-08 Thread Michael Kimsal
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

[PHP] Regex function needed

2002-02-07 Thread Michael Kimsal
Looking for a regex (preg or ereg) to remove all 1, 2 and 3 character words. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regex function needed

2002-02-07 Thread Douglas Maclaine-cross
$string = ereg_replace([A-Za-z']{1,3}, , $string); // don't forget I'm I haven't checked but something like this. -Original Message- From: Michael Kimsal [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 9:59 To: [EMAIL PROTECTED] Subject: [PHP] Regex function needed Looking

Re: [PHP] Regex function needed

2002-02-07 Thread Edward van Bilderbeek - Bean IT
] Regex function needed Looking for a regex (preg or ereg) to remove all 1, 2 and 3 character words. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Regex function needed

2002-02-07 Thread Edward van Bilderbeek - Bean IT
; - Original Message - From: Edward van Bilderbeek - Bean IT [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Michael Kimsal [EMAIL PROTECTED] Sent: Friday, February 08, 2002 12:33 AM Subject: Re: [PHP] Regex function needed I don't know if this is the best way but: $str = This is or was a test

RE: [PHP] Regex function needed

2002-02-07 Thread Martin Towell
]; Michael Kimsal Subject: Re: [PHP] Regex function needed this might even work beter, to take comma's and periods etecetera into account to: $str = This is or was a test for short words, although an, should be deleted to.; while (ereg( [a-z]{1,3} , $str)) { $str = eregi_replace( [a-z']{1,3

Re: [PHP] Regex function needed

2002-02-07 Thread Bas Jobsen
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

Re: [PHP] Regex function needed

2002-02-07 Thread Edward van Bilderbeek - Bean IT
]; [EMAIL PROTECTED] Sent: Friday, February 08, 2002 1:10 AM Subject: Re: [PHP] Regex function needed 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

RE: [PHP] Regex function needed

2002-02-07 Thread Douglas Maclaine-cross
); $str = eregi_replace('([^a-z\' ])[a-z\']{1,3}$', '\1', $str); echo $str; -Original Message- From: Edward van Bilderbeek - Bean IT [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 11:09 To: Michael Kimsal; [EMAIL PROTECTED] Subject: Re: [PHP] Regex function needed after some

RE: [PHP] Regex function needed

2002-02-07 Thread Martin Towell
Kimsal; [EMAIL PROTECTED] Subject: RE: [PHP] Regex function needed I don't know about preg but how about this monster? $str = I'm okay now aren't I. Do I work? 'mm; while(eregi(' [a-z\']{1,3} ', $str)) $str = eregi_replace(' [a-z\']{1,3} ', ' ', $str); while(eregi(' [a-z\']{1,3}([^a-z