I would like to replace specific values (Not for all elements). Here all are having same Background_color, but i do not want to replace Background_color for only specific one. How can we implement? This is just a sample code.(I would have list of skin names in file for which i should not replace the Background_color)
<Skins>
<skin>
<att name="Name" value="sknLblG3S3" type="String"/>
<att name="WidgetType" value="Label" type="String"/>
<att name="Background_color" value="228,221,213" type="RGB"/>
<skin>
<skin>
<att name="Name" value="name" type="String"/>
<att name="WidgetType" value="Label" type="String"/>
<att name="Background_color" value="228,221,213" type="RGB"/>
<skin>
<skin>
<att name="Name" value="sknLblG3S5" type="String"/>
<att name="WidgetType" value="Label" type="String"/>
<att name="Background_color" value="228,221,213" type="RGB"/>
<skin>
<skins>
Assuming your XML is in fact valid (your sample isn't - I've had to fix some of the tags by hand) - Then you should use an XML parser. As you've tagged perl, I'll assume a perl answer is acceptable:
You could iterate the
att
elements with$skin -> children()
if you find it easier to read, and theatt
method in XML::Twig reads attributes. I feelxpath
is clearer in this example though.(You can also probably do a more complicated xpath statement to match children/siblings, but I'm not sure that'd help readability).