I'm working with Azure API Management policies and I'm trying to figure out how to remove namespace prefixes from the output of my SOAP pass-thru service.
The only solution I can find is to use this
<find-and-replace from="what to replace" to="replacement" />
Will find-and-replace accept a regular expression instead of a static string? Something like this?
<find-and-replace from="/(?!xmlns)^.*:/" to="" />