Get Date with Regex

Hello Guys,

It’s me again.
To complete my project, I need to get the Date from this data with regex and then add all entries from that match_collection with a plus in the format of MM/YYYY into on string variable.
f.e.
I got the date (DD.MM.YYYY) : 10.07.2018
and 09.11.2018 and I want to get:
07/2018 + 11/2018 in one string variable. Is that possible?

ThanksVerrechnungen.txt (247 Bytes)

1 Like

\d{1,2}.\d{1,2}.\d{4}
use this to match the date if you want individual values you can use for each loop and set argument type as Object and print like item.ToString

1 Like

Here you go with an xaml

regexx.zip (10.1 KB)

Cheeers @SSchmitz

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.