查找时间
时间的格式是:小时:分钟
。小时和分钟都是两位数,例如 09:00
。
编写正则表达式在字符串 Breakfast at 09:00 in the room 123:456.
中查找时间。
P.S. 在这个任务里没有必要校验时间的正确性,所以 25:99
也可算做有效的结果。
P.P.S. 正则表达式不应该匹配 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