Hello, I need to get php to scan a txt file and find this line
04/08/2003 10005-71190-0403
The Date will change, the data I need in the string is 10005 and 0403. The 10005 could be 57463 in the next file or 10003 in the next etc.. etc..
I have had some success with
$datA = split ("M", $contents);
$thisid = substr($datA[0], 74, 5);
But the 10005 isn't always at the same location.
Any ideas?