I am trying to change the html file name of thousands links in a single document.
They look something like this. 
test.html
test.html
test.html
test.html
and i want to change the names like this:
test1.html (for the first instance)
test2.html (for the second instance)
test3.html (for the third instance)
test4.html (for the fourth instance)
and so on...
I have tried the following but it doesn't work...
Search String:   t*[0-9].html
Replace String:   t%1>.html
Any ideas? Thanks.