Hello,
I created a flow to export power apps data to a CSV file.
My delimiter is ";" so I replaced all the "," in my JSON content with ";".
replace function:
@{replace(body('Create_CSV_table'),',',';')}
Everything works but the numbers therefore take this form: 1002;98 instead of 1002,98.
Which makes sense but I would like to know if I can apply my replace function to all content except numbers.
Can someone help me ?
Thanks in advance ! 😀