I have several files containing the following XML element:
<table cellpadding="0" cellspacing="0" border="0"style="width:100%">
The part that says border="0"style="
needs a space between the 0 value and style attribute.
Unfortunately there are too many files with this issue to make manually going and inserting the space a viable option. I can edit attributes and I can edit values by creating an Xpath that gets the table as a NodeList, creates a node and gets the attributes.. but how would I add a space between the attribute and the value??