I want to convert some HTML code from:

<body>
  <p>Some text here. <a name="abc"/></p>
  <p>Some additional text</p>

to:

<body>
  <p>Some text here.</p>
  <a name="abc"/>
  <p>Some additional text</p>

Note that the anchor element is now *between* the <p> elements, rather than
inside the first one.

In the dom4j API, I see methods to add, append, and remove children, but I
don't see any "insert" methods.

I have written code that removes the anchor element, adds it to the end of
the parent's list of children, and then removes and re-appends all following
siblings until I get back around to the anchor again.  But isn't there an
easier way to do an insert?

  Thanks,
- Chip Whitmer
  Mobile Productivity, Inc.



-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
_______________________________________________
dom4j-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dom4j-user

Reply via email to