I have a flow that ingests a CSV via the default SFTP connector. For some reason, this connector appends backslashes before double quotes, presumably so that they're escaped in the response body and not mistaken for JSON or another language.
Unfortunately, the replace() expression seems incapable of removing backslashes. I've tried using the character, the ascii code for the character and using a variable to inject it. None works. I've also tried cleaning the CSV response and replacing the slashes later in the flow when the data is re-used. I also tried using the replace expression to find anything with a backslash in it (eg. /"field/" is not matched, but 'field' is found).
I found this issue unsolved elsewhere
https://powerusers.microsoft.com/t5/General-Power-Automate/Remove-backslash-quot-quot-from-response/m-p/1440983#M85483