I still havent figured out how the match syntax works... anyone know of a good turorial on this?
I am trying to match:
(RE:123)
where the 123 is any integer (but not likely more then 3 digits)
Can anyone give me match syntax for this?
$pattern = '/(\(RE: \d+\))/'; preg_match($pattern, $data, $matches);