I have a text string that looks like this:
RRULE:FREQ=WEEKLY;WKST=MO;UNTIL=20190627;BYDAY=SA,TH
I want to extract
1) the text in red which is essentially a date. After extracting it, it should convert into dd/mm/yyyy (06/06/2019) format.
2) the text in blue which are the days
Any help is...