I am parsing one xml, I want to replace an attribute with empty string.
every node has an attribute, something like this:
id="1hyx36uhpi7 80iq8oiu355"
I am using following regex pattern, but its not working
d = re.search('(id= "([a-z0-9A-Z]+)")*',text)
every node has an attribute, something like this:
id="1hyx36uhpi7 80iq8oiu355"
I am using following regex pattern, but its not working
d = re.search('(id= "([a-z0-9A-Z]+)")*',text)
Comment