I have big with tags(parsed xml)
How to remove from string this elements:
    <Error>
        <Code></Code>
        <Text></Text>
        <Severity></Severity>
    </Error>
just
xml = xml.replaceAll("<Error>.*</Error>", "")
not works, error still in string..
