final exp = RegExp(
'^([1-9]|([012][0-9])|(3[01])) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d\d\d\d (20|21|22|23|[0-1]?\d):[0-5]?\ds+');
My input string is 14 Aug 2020 12:20,14 Aug 2020 12:20:30
I need to convert the above string value to date and time, Please help. I tried using the above code but I'm stuck in somewhere