Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let's say I have a string.

$string = red,green,blue,yellow,black;

Now I have a variable which is the position of the word I am searching for.

$key = 2;

I want to get the word with the position of 2. In this case, the answer would be blue.

share|improve this question
What have you tried? – andrewsi Jul 9 '12 at 15:58
-1 for nil research – Ing Jul 9 '12 at 16:03

5 Answers

up vote 6 down vote accepted

http://codepad.org/LA35KzEZ

$a = explode( ',', $string );
echo $a[ $key ];
share|improve this answer

A better way to solve this, would be by converting the string into an array using explode().

$string = ...;
$string_arr = explode(",", $string);
//Then to find the string in 2nd position

echo $string_arr[1]; //This is given by n-1 when n is the position you want.
share|improve this answer

If you know that your words will be separated by commas you can do something like:

$key = 2;
$string = "red,green,blue,yellow,black";
$arr = explode(",",$string);
echo $arr[$key];
share|improve this answer
<?php
$string = preg_split( '/[\s,]+/', $str );

echo $string[$key];

This works by splitting a sentence into words based on word boundaries (Spaces, commas, periods, etc). It's more flexible than explode(), unless you are only working with comma delimited strings.

For example, if str = 'Hello, my name is dog. How are you?', and $key = 5, You would get 'How'.

share|improve this answer

Given:

$string = 'red,green,blue,yellow,black';
$key = 2;

Then (< PHP 5.4):

$string_array = explode(',', $string);
$word = $string_array[$key];

Then (>= PHP 5.4):

$word = explode(',', $string)[$key];
share|improve this answer
1  
Note: array dereferencing (i.e., explode(...)[$key]) will only work in PHP 5.4 or greater. Prior to 5.4, it would need to be on two lines (i.e., $words = explode(...); $word = $words[$key]; – Wiseguy Jul 9 '12 at 16:07
@Wiseguy Thats why I changed it. I have been in c# land too long. – iambriansreed Jul 9 '12 at 16:08
1  
Nice; you were changing it as I was writing that comment. It does work as of 5.4.0, so your code wasn't wrong, but many (most?) people are still using older versions. – Wiseguy Jul 9 '12 at 16:10
@Wiseguy Including me. I had no idea they were implementing it on 5.4.0. Very cool. – iambriansreed Jul 9 '12 at 16:11

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.