Skip to content

Commit 8d71b7b

Browse files
aitelintaitelint
and
aitelint
authored
[* DateTimeV2] Removed extraction of digit-malformed time expressions (microsoft#3008)
Co-authored-by: aitelint <[email protected]>
1 parent f4b0e70 commit 8d71b7b

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

.NET/Microsoft.Recognizers.Definitions.Common/BaseDateTime.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class BaseDateTime
2323
{
2424
public const string HourRegex = @"(?<!\d[,.])(?<hour>2[0-4]|[0-1]?\d)(h)?";
2525
public const string TwoDigitHourRegex = @"(?<hour>[0-1]\d|2[0-4])(h)?";
26-
public const string MinuteRegex = @"(?<min>[0-5]?\d)(?!\d)";
26+
public const string MinuteRegex = @"(?<min>[0-5]\d)(?!\d)";
2727
public const string TwoDigitMinuteRegex = @"(?<min>[0-5]\d)(?!\d)";
2828
public const string DeltaMinuteRegex = @"(?<deltamin>[0-5]?\d)";
2929
public const string SecondRegex = @"(?<sec>[0-5]?\d)";

Patterns/Base-DateTime.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ HourRegex: !simpleRegex
33
TwoDigitHourRegex: !simpleRegex
44
def: (?<hour>[0-1]\d|2[0-4])(h)?
55
MinuteRegex: !simpleRegex
6-
def: (?<min>[0-5]?\d)(?!\d)
6+
def: (?<min>[0-5]\d)(?!\d)
77
TwoDigitMinuteRegex: !simpleRegex
88
def: (?<min>[0-5]\d)(?!\d)
99
DeltaMinuteRegex: !simpleRegex

Specs/DateTime/English/DateTimeModel.json

+35
Original file line numberDiff line numberDiff line change
@@ -24272,5 +24272,40 @@
2427224272
}
2427324273
}
2427424274
]
24275+
},
24276+
{
24277+
"Input": "schedule me a 1:1 on monday",
24278+
"Context": {
24279+
"ReferenceDateTime": "2016-11-07T00:00:00"
24280+
},
24281+
"Results": [
24282+
{
24283+
"Text": "monday",
24284+
"Start": 21,
24285+
"End": 26,
24286+
"TypeName": "datetimeV2.date",
24287+
"Resolution": {
24288+
"values": [
24289+
{
24290+
"timex": "XXXX-WXX-1",
24291+
"type": "date",
24292+
"value": "2016-10-31"
24293+
},
24294+
{
24295+
"timex": "XXXX-WXX-1",
24296+
"type": "date",
24297+
"value": "2016-11-07"
24298+
}
24299+
]
24300+
}
24301+
}
24302+
]
24303+
},
24304+
{
24305+
"Input": "This screen has a 4:3 aspect ratio.",
24306+
"Context": {
24307+
"ReferenceDateTime": "2016-11-07T00:00:00"
24308+
},
24309+
"Results": []
2427524310
}
2427624311
]

0 commit comments

Comments
 (0)