Can someone help me with my simple pattern match:
$string = "Individual Cards (#44115)";
$pattern = "<help>\";//need help to get the number out of a string like this.
preg_match($pattern,string,$match);
print $match[0]; // should print the number 44115
The number will always be in the (#1234) part - but not always the same number of digits.