Hello, a supplier sends me an email with a certain rate that i need to grab. I need to extract a specific number in an email that contains a number with two decimals. This number is not fixed, e.g.
10,92% -> 10,92 should be extracted, only the number is each time different. Only a comma (,) is always available.
Then it needs to write this number to a text file which i will later use in an excel file (not needed in power automate and send an email with this number to my mail account.
I suspect this needs to be done in a condition, like
contains(outputs('Html_to_text')?['body'],'XX,XX%') but i do not know how to state it in working code. Any suggestions?