I'm looking for solution for data capture from email body. See below sample email format, it could contain multiple repeated blocks highlighted in bold. Can you please suggest approach to capture highlighted data? I have tried to use split function but its only capturing last entry of repeated blocks.
trim(first(split(last(split(outputs('Compose'),'--------- ------------ ---------- --------------- ------------- ----------')),'*************************************************************************************************************************************************')))

*************************SAMPLE EMAIL STARTS***************************************************
For the ZIP File Sent by Vendor:
=====================================================
Number of files sent : 53
Number of files we actually received: 53 Number of filenames matched: 53 Match Found.
Details of PDF files Received:
==============================
Date Sent Claim Number Policy No. Assessment Type File Received Assessment
--------- ------------ ---------- --------------- ------------- ----------
2024-05-02 BBBBBBB XXXXXXX On Site Assessment (RN) file1.PDF In-Person
2024-05-02 CCCCCCC XXXXXXX On Site Assessment (RN) file2.PDF In-Person
*************************************************************************************************************************************************
For the ZIP File Sent by Vendor:
=====================================================
Number of files sent by LTS: 105
Number of files we actually received: 52 Number of filenames matched: 105 Match NOT Found.
Details of PDF files Received:
==============================
Date Sent Claim Number Policy No. Assessment Type File Received Assessment
--------- ------------ ---------- --------------- ------------- ----------
2024-05-03 BBBBBBB XXXXXXX On Site Assessment (RN) file1.PDF In-Person
2024-05-03 CCCCCCC XXXXXXX On Site Assessment (RN) file2.PDF In-Person
*************************************************************************************************************************************************
*************************SAMPLE EMAIL ENDS***************************************************