How do we replace strings within an XML payload in logic apps?
input
<root>
<alexIsAwesome>yes he is</alexIsAwesome>
<bytes>sdfsdfjijOIJOISJDFQPWORPJkjsdlfkjlksdf==</bytes>
<bytes>SFSDFsdfsdgfjgjkfjsdlfkjlksdf==</bytes>
</root>
desired result
<root>
<alexIsAwesome>yes he is</alexIsAwesome>
<bytes>replacetext1</bytes>
<bytes>replacetext2</bytes>
</root>
How do we iterate through XML and replace text within nodes? Please keep in mind that the input node might be 100mb in size!