我有这些正则表达式来从一个人(例如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);
虽然比这三个奖项更多,但我想知道如何用两个分开的正则表达式为一个人和一部电影或电视剧获得所有奖项?
提前致谢。