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.
|
Let's say I have a string.
Now I have a variable which is the position of the word I am searching for.
I want to get the word with the position of 2. In this case, the answer would be |
|||||
|
|
|||
|
|
|
A better way to solve this, would be by converting the string into an array using explode().
|
|||
|
|
|
If you know that your words will be separated by commas you can do something like:
|
|||
|
|
This works by splitting a sentence into words based on word boundaries (Spaces, commas, periods, etc). It's more flexible than For example, if |
|||
|
|
|
Given:
Then (< PHP 5.4):
Then (>= PHP 5.4):
|
|||||||||||||
|