Re: [PHP] Listing a few words from one sentence ??

2002-11-08 Thread Ernest E Vogelsinger
At 23:29 07.11.2002, conbud said: [snip] Say I have a sentence that contains 8 words, how do I get PHP to list just 4 of those 8 words ? [snip] Let's assume your words are delimited by one or more blanks, so you

[PHP] Listing a few words from one sentence ??

2002-11-07 Thread conbud
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

Re: [PHP] Listing a few words from one sentence ??

2002-11-07 Thread .: B i g D o g :.
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,

Re: [PHP] Listing a few words from one sentence ??

2002-11-07 Thread conbud
Hey I guess I sort of worded my question wrong, if the sentance says Thank you for helping me with PHP I wanna be able to just have the first four words of the sentence printed so it says Thank you for helping... .: B I G D O G :. [EMAIL PROTECTED] wrote in message