> I have a question concerning CDATA. If I have a tag like the following: > > <foo> > <![CDATA[<BR>Hello]]> > </foo> > > how would I extract the CDATA material? getRootElement().getText() returns "<BR>Hello" getRootElement().getMixedContent().get(1) returns the actual CDATA instance Note get(0) returns the \n whitespace. -jh-