How can I truncate a string after 20 words in PHP?
|
feedback
|
Outputs:
| |||||||||||||
feedback
|
|
change the "2" to 19 to get first 20 words. This one gets the first 3 words:
| |||
|
feedback
|
| |||
|
feedback
|
|
Split the string (into an array) by | |||||||||||||||
feedback
|
|
Try regex. You need something that would match 20 words (or 20 word boundaries). So (my regex is terrible so correct me if this isn't accurate):
And here are some examples of regex in php. | |||
|
feedback
|
|
Something like this could probably do the trick:
| |||
|
feedback
|
|
use PHP tokenizer function strtok() in a loop.
| |||
|
feedback
|
|
use explode() . Example from the docs.
note that explode has a limit function. So you could do something like
| |||||
feedback
|
|
based on 動靜能量's answer:
or
| |||
|
feedback
|
|
Truncates to nearest preceding space of target character.
| ||||
|
feedback
|
|
| |||
|
feedback
|
|
Here is what I have implemented.
As you can see it is based off karim79's answer, all that needed changing was that the if statement also needed to check against words not characters. I also added a link to main function for convenience. So far it hsa worked flawlessly. Thanks to the original solution provider. | |||
|
feedback
|
|
Here's one I use:
| |||
|
feedback
|
|
Its not my own creation, its a modification of previous posts. credits goes to karim79...!!! thanks yaar...
| |||
|
feedback
|