06-28-2005, 06:13 PM
I found a way to do this, but there may be a better way. Here is what I am doing:
Htm el=htm("BODY" "" "" "Internet Explorer" "2/3" 0 0x20)
all=el.HTML
spe 200
int x
int counter=1
str what
str ggg
str hhh
foreach qqq all
if(!qqq.len) continue
if ggg.left(qqq 3)="<TD"
x = find(qqq ">")
hhh.right(qqq len(qqq)-x-1)
x=find(hhh "</TD>")
hhh.left(hhh len(hhh)-(len(hhh)-x))
This then makes hhh the data I am looking for.
Is there a better way?
Thanks!
Htm el=htm("BODY" "" "" "Internet Explorer" "2/3" 0 0x20)
all=el.HTML
spe 200
int x
int counter=1
str what
str ggg
str hhh
foreach qqq all
if(!qqq.len) continue
if ggg.left(qqq 3)="<TD"
x = find(qqq ">")
hhh.right(qqq len(qqq)-x-1)
x=find(hhh "</TD>")
hhh.left(hhh len(hhh)-(len(hhh)-x))
This then makes hhh the data I am looking for.
Is there a better way?
Thanks!