gpt4 book ai didi

javascript - 匹配日期时无法理解 Javascript 中的正则表达式

转载 作者:行者123 更新时间:2023-11-28 14:08:41 25 4
gpt4 key购买 nike

所以..这是用于检测给定时间内的小时和分钟的答案代码的一部分

function scheduleMeeting(startTime,durationMinutes) { 
var [ , meetingStartHour, meetingStartMinutes ] = startTime.match(/^(\d{1,2}):(\d{2})$/) || [];
...
}

这个(/^(\d{1,2}):(\d{2})$/)指的是什么?这真是让我发疯了......

最佳答案

分解正则表达式:

^(\d{1,2})  // From the beginning of string (^) capture exactly one or two digits (hours)
: // must be a colon
(\d{2})$ // Capture exactly two digits which also should be the end of the string

关于javascript - 匹配日期时无法理解 Javascript 中的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60335232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com