我有一种方法在.Net 中使用正则表达式将时间从例如“1h 20m”格式转换为双倍。就这个。
public static double? GetTaskHours(this string tmpHours) {
Double taskHours = 0;
if (!string.IsNullOrEmpty(tmpHours) && !double.TryParse(tmpHours, out taskHours)) {
var match = Regex.Match(tmpHours, @"^(?=\d)((?<hours>\d+)(h|:))?\s*((?<minutes>\d+)m?)?$", RegexOptions.ExplicitCapture);
if (match.Success) {
int hours;
int.TryParse(match.Groups["hours"].Value, out hours);
int minutes;
int.TryParse(match.Groups["minutes"].Value, out minutes);
taskHours = (double)hours + (double)minutes / 60;
}
}
return Math.Round(taskHours, 3);
}
现在我需要同样的使用 Javascript。我试图根据http://www.w3schools.com/jsref/jsref_regexp_nfollow.asp转换正则表达式,但我所有的尝试都失败了。我的正则表达式很差。
这是我的 JS 尝试。
function getHours(value) {
var myArray = value.match(/^(?=\d)((\d+)(h|:))?\s*((\d+)m?)?$/g);
var hours = myArray[2];
var minutes = myArray[5];
return Number(hours) + Number(minutes) / 60;
}
这是对的吗?
你能给我指路吗?
问候,德米特里。