The Regex is fine, your preg_match order is messed up though. It should be:

PHP Code: 
preg_match($pattern$Result$pregResult); 
You first specify the pattern, then the subject and then the name of the array that the results will be put in.