> I have a fairly large html document that I need to convert to xml. > The current format is is: > <DD> A whole bunch of text > <DT> Something else </DT> > (There is a new line in there before <DT>) > > Which I need to convert to > <DD> A whole bunch of text </DD> > <DT> Something else </DT>
$new_text = str_replace("\n\t<DT>","</DD>\n\t<DT>",$your_text); Assuming there is a tab in there... You'd be better off getting an editor that'll do this for you. Textpad lets you search and replace with regular expressions. Other programs do too. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php