Hi Guys!
I have a query on a Regex expression.
Given:
I have these strings randomly:
1. Shipment Deadline:
2. Closing Deadline:
3. Cut-Off Deadline:
I would need to get any value that would have “Deadline:”
But I don’t want the “Shipment Deadline:” or even possibly "Shipment xxxxx Deadline:"
How can exclude matches that would have “Shipment?”
System.Text.RegularExpressions.Regex.Matches(in_Str, “(?i)(deadline)(\D|\d){1,40}\d{4}\D\d{2}\D\d{2}”)
Thank you!