To Remove White after the End of Element for Each CDATA element !!!

i am having many cdata tags like below....
<WOOD>
        <WORK>
            <DONE><![CDATA[A B FL  3432
                     ]]></DONE>
        </WORK>
</WOOD>
<WOOD>
        <WORK>
            <DONE><![CDATA[C C FT  1111
                     ]]></DONE>
        </WORK>
</WOOD>
<WOOD>
        <WORK>
            <DONE><![CDATA[T T RT  2323
                     ]]></DONE>
        </WORK>
</WOOD>
i want to remove all the spaces after the end of the last element.I have to use white-space-collapse="false"
as my element contains white-space between them
Expected Output
A B FL  3432
C C FT  1111
T T RT  2323

Ouput Coming :

A B FL  3432
                        C C FT  1111
 
                         T T RT  2323

Yahoo! India Mobile: Ringtones, Wallpapers, Picture Messages and more.Download now.

Received on Thursday, 18 December 2003 02:55:57 UTC