I'm scanning email files and I've got a script that checks
to see if column 1 is a char (a-z) and the word ends with
a ":" - UgggggggggggggL E. Sure would be nice if I could
$x = explode (" ", $line)
if (is_chr($x[0])
if (strstr($x, ":")
--still in header--
anyone have a better way?
Tka
to see if column 1 is a char (a-z) and the word ends with
a ":" - UgggggggggggggL E. Sure would be nice if I could
$x = explode (" ", $line)
if (is_chr($x[0])
if (strstr($x, ":")
--still in header--
anyone have a better way?
Tka
Comment