Regex email body

Hello Guys,

I need your help regarding a regex problem.
I read out an email-body and need to get two seperate informations out of it.
I need to find the 5 digit number behind Kundennr.: and I need to the find the words behind Kategorie: there are three possible options for "Kategorie:
• Kategorie: Offene Posten
• Kategorie: Gutschriften
• Kategorie: Rechnungen

Thanks alot.

*Sehr geehrte(r) Gonzalo Hugo, *

*Sie haben uns folgende Daten/Dateien über unser Portal übermittelt: *

Kategorie: Gutschriften
Datum: 2020-01-23_14-19-23-419
Kundennr.: 12345
Anzahl neue Gutschriften: 2
Gesamtbetrag neue Gutschriften: 4.355,00

*Dateien: *

RG-KR 2020-01.pdf
RG-KR 2020-02.pdf

*Erfasste Gutschriften *
*Debitorennummer Rechnungsnummer Gutschriftsnummer Gutschriftsdatum Währung Gutschriftsbetrag *
5055 2019-638 RG KR 2020-01 22.01.2020 EUR 2.244,00
5055 2019-666 2020-02 22.01.2020 EUR 2.112,00

Mail_body.txt (556 Bytes)

RegexHelp.xaml (5.5 KB) Mail_body.txt (556 Bytes)

@DenizHoglu
Thanks!

1 Like

@kadiravan_kalidoss thx lot !!! :slight_smile:

1 Like
(?<=Kategorie: )(.*)(?=\n)
and
(?<=Kundennr.: )(.*)(?=\n)

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