Trying to split the date and time which comes in the French style like the example below:
23 sept. 2021 à 13:30:57
And the final result should be the example below:
23-09-2021 and 13:30:57
The issue comes because of the << à >> when trying to get the time. I've tried with the different way such as DateTimeFormatter, DateFormat etc...
Could you please help? thanks in advance