Re: Transformation Help

> I am new to transformations so if this is something obvious, please help me
> out.  Through the transformation help, is it possible to convert a comma
> separated listing such as:
> 
> <p>head1, head2, head3</p>
> <p>data1, data2, data3</p>
> <p>data4, data5, data6</p>
> 
> to a table such as:
> 
> <table>
> <tr><th>head1</th><th>head2</th><th>head2</th></tr>
> <tr><td>data1</td><td>data2</td><td>data2</td></tr>
> <tr><td>data4</td><td>data5</td><td>data6</td></tr>
> </table>
> 
> Thank you for any help.
> 
> Brant Langer Gurganus
> "The Computer Guru"

Transformation rules cannot convert automatically unstructured informations 
like
"head1, head2, head3" into structured information like
<tr><th>head1</th><th>head2</th><th>head3</th></tr>
If you had <p>head1</p><p> head2</p><p> head3</p> it could do the 
transformation.

-- 
     Irene.

Received on Wednesday, 6 March 2002 05:05:48 UTC