Taking action for several attributes
Suppose I have the following in a document:
<myelement env_1="0" env_2="0" env_3="1" env_4="1">
<childelement>some text</childelement>
</myelement>
Now I want the following result:
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
Can anyone help me with this problem?
Thanks in advance, Raoul.
|