Anybody know a transformer or something to take attributes
out of the text() of an element and get them into
real attributes. I want to trap this one element called
<input> and parse it's text and create real attributes,
but then copy the rest of the document as it.
>From this:
<element1>
<element2>
<input>attr1="value 1" attr2="value 2" More text<b>and elements</b></input>
</element2>
<element2>
</element2>
</element1>
To This:
<element1>
<element2>
<input attr1="value 1" attr2="value 2">More text<b>and elements</b></input>
</element2>
<element2>
</element2>
</element1>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]