perl regex to find the ones you want and then print them out...

or you could explode then string and put each word in to one array and
access the word by the array index...

Example: 

$words = explode( " ", $sentence );

for( $i = 0; $i < 4; $i++ )
{
        echo "{$words[$i]}";
}



On Thu, 2002-11-07 at 22:29, conbud wrote:
> Say I have a sentence that contains 8 words, how do I get PHP to list just 4
> of those 8 words ?
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
-- 
.: B i g D o g :.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to