查找时间
时间格式为:hours:minutes
。小时和分钟都用两位数表示,例如 09:00
。
编写一个正则表达式,在以下字符串中查找时间:Breakfast at 09:00 in the room 123:456.
注意:在本任务中,无需检查时间的正确性,因此 25:99
也可以是有效结果。
注意:正则表达式不应该匹配 123:456
。
答案:\b\d\d:\d\d\b
。
alert( "Breakfast at 09:00 in the room 123:456.".match( /\b\d\d:\d\d\b/ ) ); // 09:00