JoJo wrote:
> Folks:
>
> I have an HTML document that is about 100 pages long. I assembled this
> document from the "Articles By
> This Author" section of the following web page:
> http://www.tigersharktrading.com/authors/23/Harry-Boxer
>
> Scattered throughout this document are many links to the web. The links of
> interest to me all start with the ">>" characters, as seen
> at TigerSharkTrading, then the name of the article is given as a link.
>
> * How can I quickly extract these links and transfer same to a new file
> ?
> * Is there some type of script that can quickly accomplish this task ?
>
hi JoJo,
I suggest using the "all" collection (of the document
object).
Let's say that your links appear in an "anchor" (A) tag.
Then you could get your collection of anchor tags like this:
document.all.tags("A")
To get the tags you want, you could "walk-the-list" with
some sort of a loop (your choice, try "For Each").
The individual items would be addressed as:
document.all.tags("A")(i) ' where i is your index
And the number of items would be:
document.all.tags("A").Length
In your discussion, you mentioned the URL's, which are
probably appearing as the "href" attribute of the "A"
tag. My guess is that you can get the URL as:
document.all.tags("A")(i).href
cheers, jw
__________________________________________________ __________
You got questions? WE GOT ANSWERS!!! ..(but, no guarantee
the answers will be applicable to the questions)