Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

12 Answers

up vote 31 down vote accepted

You can use the explode function as follows:

$myvalue = 'Test me more';
$arr = explode(' ',trim($myvalue));
echo $arr[0]; // will print Test
share|improve this answer
13  
Since the OP explicitly states the first word, this is also a nice method: list($first_word) = explode(' ', trim($myvalue)); – Dennis Haarbrink Sep 13 '10 at 15:16

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 Test me more can be obtained by tokenizing the string on the space character.

<?php
$value = "Test me more";
echo strtok($value, " "); // Test
?>

For more details and examples, see the strtok PHP manual page.

share|improve this answer

If you have PHP 5.3

$myvalue = 'Test me more';
echo strstr($myvalue, ' ', true);

The alternative is something like:

$i = strpos($myvalue, ' ');
echo substr($myvalue, 0, $i !== false ? $i : strlen($myvalue));

Or using explode, which has so many answers using it I won't bother pointing out how to do it.

share|improve this answer
+1 for not using explode or regex (both inappropriate imho). Another alternative would be to use strstr with str_replace, replacing the part after the needle from strstr with nothing. – Gordon Mar 19 '10 at 11:45
Worth noting, that although strstr is available in PHP since 4.3.0 it was not before 5.3.0, when the optional parameter before_needle (which you're using in this example) was added. Just a notice, because I was confused, why you state, that this example needs 5.3.0. – trejder May 7 at 8:07

You could do

echo current(explode(' ',$myvalue));
share|improve this answer
<?php
  $value = "Hello world";
  $tokens = explode(" ", $value);
  echo $tokens[0];
?>

Just use explode to get every word of the input and output the first element of the resulting array.

share|improve this answer

Using split function also you can get the first word from string.

<?php
$myvalue ="Test me more";
$result=split(" ",$myvalue);
echo $result[0];
?>
share|improve this answer
3  
NOTE- split() is DEPRECATED from 5.3 > – Leo Jun 3 '11 at 8:35

Just in case you are not sure the string starts with a word...

$input = ' Test me more ';
echo preg_replace('/(\s*)([^\s]*)(.*)/', '$2', $input); //Test
share|improve this answer

strtok is quicker than extract or preg_* functions.

share|improve this answer
$input = "Test me more";
echo preg_replace("/\s.*$/","",$input); // "Test"
share|improve this answer
$str='<?php $myvalue = Test me more; ?>';
$s = preg_split("/= *(.[^ ]*?) /", $str,-1,PREG_SPLIT_DELIM_CAPTURE);
print $s[1];
share|improve this answer

personally strsplit / explode / strtok does not support word boundaries, so to get a more accute split use regular expression with the \w

preg_split('/[\s]+/',$string,1);

This would split words with boundaries to a limit of 1.

share|improve this answer
$string = ' Test me more ';
preg_match('/\b\w+\b/i', $string, $result); // Test
echo $result;

/* You could use [a-zA-Z]+ instead of \w+ if wanted only alphabetical chars. */
$string = ' Test me more ';
preg_match('/\b[a-zA-Z]+\b/i', $string, $result); // Test
echo $result;

Regards, Ciul

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.