Here's an extract:
Code: Select all
<span style="color:#333333;">Share Price:</span> 62.35</td><td><span style="color:#333333;">Bid:</span>
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
<span style="color:#333333;">Share Price:</span> 62.35</td><td><span style="color:#333333;">Bid:</span>
Code: Select all
on mouseUp
get offset("share price",yourRawdata)
put char (it + 20) to (it + 28) of yourRawdata into temp --should be enough room to grab the price
repeat for each char tChar in temp --extract just numbers and dec. point
if tChar is in "0123456789." then put tChar after SharePrice
end repeat
answer sharePrice
end mouseUp