I have these regular expression to grab the Oscars, wins, and nomination from a person (for example Cote de Pablo).
preg_match('/([0-9]+) Oscars/', $url, $oscars);
preg_match('/([0-9]+) ([win|wins]+)/', $url, $wins);
preg_match('/([0-9]+) nominations/', $url, $nominations);
There is more awards than these three though and I wonder how I can grab all of the awards for a person and for a movie or TV serie with two separated regular expression?
Thanks in advance.