how can I transform an attribute text node to a element tag
, for example I have:
<objectClass>
<objectClass name="CAR">
</objectClass>
which I want to transform it to the following:
<objectClass>
< CAR>
< /CAR>
</objectClass>
thanks for help,