Im trying to search for nn/nnnnnn/nn in a file..
I have this
if (preg_match_all("([0-9]{6})", $file, $out)) {
echo "Match was found <br />";
print_r($out);
which deals with the centre 6 numbers but how do I get it to search for the whole pattern? I get a little confused when i have to add the search strings together. I know I have to do the following
([0-9]{2}) and / and ([0-9]{6}) and / and ([0-9]{2})
HOw do I add the search string as one? Thanks in advance Cheers Mat