How do I, from an output, only select the first 10 words?
|
|
|||
|
|
|
All the above answers will function incorrectly if there is an unexpected character in place of a space in the sentence structure, or if the sentence contains multiple conjoined spaces. This version will work no matter what kind of "space" you use between words and can be easily extended to handle other characters... it currently supports any white space character plus , . ; ? !
I'm amazed at the lack of people using RegExp to answer these type of questions, but using RegExp where it isn't needed to answer others... mutter mutter I'll stop being in a bad mood now v2 now without camelcase ;) |
|||||||||
|
|
http://snipplr.com/view/8480/a-php-function-to-return-the-first-n-words-from-a-string/
|
|||
|
|
|
A quick Google search for your exact question returns this solution from http://forumsblogswikis.com/2009/02/01/php-return-first-n-words-from-a-string/ :
|
|||
|
|
