I am parsing text in Power Automate in a multi line pdf document. The text example is like the one below
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxx
Invoice Nº / Date
12345678 / 10.04.2023
Using Google, Stack Overflow and regex101 I got this far:
(?<=Invoice Nº / Date\r|Invoice Nº / Date\n)[^\r\n]+
that gets me this (am I that far from the intended result? please help
12345678 / 10.04.2023
how can I independently obtain the Invoice Nº and the Date to populate Excel rows?
FYI, I can't use \K
Thanks in advance.