File tree 3 files changed +37
-2
lines changed
.NET/Microsoft.Recognizers.Definitions.Common
3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public static class BaseDateTime
23
23
{
24
24
public const string HourRegex = @"(?<!\d[,.])(?<hour>2[0-4]|[0-1]?\d)(h)?" ;
25
25
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)" ;
27
27
public const string TwoDigitMinuteRegex = @"(?<min>[0-5]\d)(?!\d)" ;
28
28
public const string DeltaMinuteRegex = @"(?<deltamin>[0-5]?\d)" ;
29
29
public const string SecondRegex = @"(?<sec>[0-5]?\d)" ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ HourRegex: !simpleRegex
3
3
TwoDigitHourRegex : !simpleRegex
4
4
def : (?<hour>[0-1]\d|2[0-4])(h)?
5
5
MinuteRegex : !simpleRegex
6
- def : (?<min>[0-5]? \d)(?!\d)
6
+ def : (?<min>[0-5]\d)(?!\d)
7
7
TwoDigitMinuteRegex : !simpleRegex
8
8
def : (?<min>[0-5]\d)(?!\d)
9
9
DeltaMinuteRegex : !simpleRegex
Original file line number Diff line number Diff line change 24272
24272
}
24273
24273
}
24274
24274
]
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": []
24275
24310
}
24276
24311
]
You can’t perform that action at this time.
0 commit comments