if ((urlStr.indexOf('t='))!=-1)
{
var pat = /t=(\d+)m(\d+)s/;
pat.exec(urlStr);
alert (RegExp.$1);
alert (RegExp.$2);
}
ケース 1: http://localhost/proc1/commit.php&t=1m13s
1 と 13 を返す -> OK
ケース 2:http://localhost/proc1/commit.php&t=13s
空白と空白を返す -> 正しくない
期待される結果 0 と 13
正規表現を変更するにはどうすればよいですか?