Searching strings is easiest with regular expressions.
Unfortunately regexps are also quite cryptic.
look at preg_match() in the manual, you could do something like
preg_match("\b(b.*?)\b/",$string,$aMatches);
print_r($aMatches);
or you could use arrays:
$array=explode(',',$string);
for ($t=0;$t<count($array);$t++)
{
if (substr($array[$t],0,1)=='b')
{
echo $array[$t]." begins with a b\n";
};
};