> Does anyone know how to find a TAB character in a string or explode  
> on TAB into an array?
> 
> Sincerely,
> Mike

strpos("\t", $string)

$array = split("\t", $string);

James

Reply via email to