I have the below string in a file. I am trying out regex to extract the paragraphs after "---" which is not shows as a text in this editor. The image below should give you an understanding of text.
( 2021-07-10 01:24:55 PM GMT )STEMAILTE
---
Badminton is a racquet sport played using racquets to hit a shuttlecock across
a net. Although it may be played with larger teams, the most common forms of
the game are "singles" (with one player per side) and "doubles" (with two
players per side).
( 2021-07-10 01:27:55 PM GMT )ARAMASU
---
Both the academies run a residential training program for upcoming and
talented footballers and Boxers. The Academies are functioning in Sarusajai
Sports complex.
Have attached the image below -
So far I have tried
re.findall(r'([(){}[\]][^\S]\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} [a-zA-Z]{2} [a-zA-Z]{3}[^\S][(){}[\]][\w.]+)(\n-+)((\n.+))+',text)
which just gives me the datetime and text after that.
I am trying to extract the three pharagraphs after the "---" in each groups from the above image. There are garbage texts above the provided ones here.