Hello,
Im trying to get some info from a remote html file. I found that the stuff i need is between:
a <font> tag and and a tag. I can find the begining, but I cant get the stuff in between.
Thanks.
Bill
Use the same method you used to find the location of the beginning tag to find the end tag. Subtract the position of the beginning tag from the position of the end tag. This will give you the length of your data plus the length of the beginning tag. You can then use substr() or whatever to get the information you seek.