我有以下代码从字符串中获取季节数。
但它没有用,因为季节数在任何"Season"
字之前。
我试图将(\d+)\s*
放在模式前面,但后来代码没有返回任何内容。
如果before or after the "Season" words?
$a = 'The Simpson 11 Season';
if ( preg_match( "/(Season|Stagione|S|T)\s*(\d+)/i", $a, $matches ) )
{
print_r( $matches );
}