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.