In a boatload of HTML pages, I need to replace all strings like this:
language[0].attributes[24].value;
with this:
language[0].getAttribute("attr"+24);
where '24' can be any number.
I thought I could use Notepad++'s Find and Replace with regular expressions to do this, but have had no luck so far after much trial and error. I don't want to have to do this manually.
(This is because, when I upgraded to IE10, all the text on the webpages I support went out of whack. It seems that by definition XML attributes can be in any order, and that newer versions of IE reorder them. I now need to reference the attributes by name instead of index.)
Appreciate the help.