Hi @jpvo,
The XMLFormatter has some XML clean up options, did you try them?
Hi @jpvo,
The XMLFormatter has some XML clean up options, did you try them?
Yes but it's not solving the probelm when dealing with xml attributes as opposed to xml child elements.
Â
Â
I've had the same issues, which for my specific task I was able to solve using two StringReplacers with the following regular expressions:
<na-zA-Z0-9_]+>\s*</za-zA-Z0-9_]+>
This one removes emtpy tags, e.g. "<tag></tag>"
And to remove emtpy self-closing tags, such as "<tag />":
< a-zA-Z0-9_]+/>
I don't think it's ideal, but at least it works. I'd be glad if someone with a more elegant solution would like to share it here.
Edit: Oh, and I forgot to mention that I'm using the XMLTemplater and not the XML Writer!
I've had the same issues, which for my specific task I was able to solve using two StringReplacers with the following regular expressions:
<na-zA-Z0-9_]+>\s*</za-zA-Z0-9_]+>
This one removes emtpy tags, e.g. "<tag></tag>"
And to remove emtpy self-closing tags, such as "<tag />":
< a-zA-Z0-9_]+/>
I don't think it's ideal, but at least it works. I'd be glad if someone with a more elegant solution would like to share it here.
Edit: Oh, and I forgot to mention that I'm using the XMLTemplater and not the XML Writer!
We solve it using python to create an xml fragment "manually" and an XMLAppender to insert it at the right place.
Â
In the attached workspace I will use a regex to remove name=""
Â
Â