in reply to changing format of the first word of every line in an HTML doc
A good general approach would be to save the document as .DOCX, which is a compressed-XML format. Then, use an XML parsing package.
In particular, you want to look at “XPath expressions,” which allows you to traverse the entire XML data-structure looking for what you need to find ... without writing code to do so.
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: changing format of the first word of every line in an HTML doc
by sharkyflip (Initiate) on Jan 13, 2011 at 12:03 UTC |