To those who can help I would greatly appreciate it as I'm not quite sure how to write this out. Ok, here's the situation.
I need a function that will search a single variable of HTML code and find all opening <td> tags. I'll need to use regular expressions since each <td> tag could contain varying attributes, spacing, etc. With each tag that is found, I need to add a small string of fixed characters to the end (ex: <td>XXXXX).
After some other functions run, I will need to apply the same in reverse, removing just the XXXXX strings.
Thank you!!
If you're curious as to why it's because I've come across an excellent JScript that removes all of the unnecessary code from bloated web pages (usuallly from MS Office docs). The only snag is that the script is removing empty TD tags, even if they contain non-breaking spaces. As a result cells are shifting in directions they shouldn't. What I'm asking above should resolve the problem. The script I'm speaking of can be found here:
http://ethilien.net/websoft/wordcleaner/cleaner.htm
Thanks again!