I want to extract the first word of a variable from a string. For example, take this input:
<?php $myvalue = 'Test me more'; ?>
The resultant output should be Test, which is the first word of the input.
How can I do this?
|
|
|
You can use the explode function as follows:
|
|||||
|
|
There is a string function (strtok) which can be used to split a string into smaller strings (tokens) based on some separator(s). For the purposes of this thread, the first word (defined as anything before the first space character) of
For more details and examples, see the strtok PHP manual page. |
|||
|
|
|
If you have PHP 5.3
The alternative is something like:
Or using explode, which has so many answers using it I won't bother pointing out how to do it. |
|||||
|
Just use explode to get every word of the input and output the first element of the resulting array. |
|||
|
|
|
Using split function also you can get the first word from string.
|
|||||
|
|
Just in case you are not sure the string starts with a word...
|
|||
|
|
|
|||
|
|
|
personally
This would split words with boundaries to a limit of 1. |
|||
|
|
Regards, Ciul |
|||
|
|