Dates from .txt files

Hello, Team!
Can you help me with a solution please?
I have some .txt files that look the same every time, but of these, I have to keep in some variables, only what appears colored in yellow.
How can I do this?
Thank you in advance,

Hi @LZlz

You can try the regex pattern to extract as below

for date extraction of format 30/03/2021 etc,…

use below regex : [\d]+[\d]+[\d]+

for data like 15041203287 etc use below regex pattern , \d{11}\s

for data like 5566.98 use below regex pattern \d{4}[.]\d{2}

for data ike 70,90 etc , use below regex pattern : \d{2}\s

Let me know if it works for you

Regards,
Nived N
Happy Automation