defmodule NDCNormalize do def remove_soap_tags(xml, config) do ns = config[:response_namespace] Regex.replace(~r/(<\/?#{ns}:.*?>)/s, xml, "") end end