Jump to content

Stringinstr and IeBodyReadText


TheTex
 Share

Recommended Posts

Hi,

I'm trying to take information from a website using IeBodyReatText and stringinstr. The information i want precedes a certain string that says "This much:".

This much: one-hundred

Is an example of what one looks like. How would I make the program recognize just the one-hundred?

Note- "one-hundred" is just an example and changes everytime the program loops.

Edited by TheTex
Link to comment
Share on other sites

I put the text you sent us in a file called test.txt in the same directory as the script.

Here's the script, I tried to keep it simple and straightforward so I hope that is what it is to you.

#include <Array.au3>

$data = FileRead("test.txt")

$line = StringSplit(StringStripCR($data),@LF)

Dim $results[1]

For $i = 1 to UBound($line)-1
    if ( StringInStr($line[$i], "last post by; " ) ) Then
        _ArrayAdd($results, StringMid($line[$i],16))
    EndIf
Next

_ArrayDisplay($results)
Link to comment
Share on other sites

;
#include <inet.au3>
#include<array.au3>;; For _ArrayDisplay only
$sSrc = _InetGetSource("http://pastebin.com/m1190c59a")
$aRegEx = StringRegExp($sSrc,"(?i)<li\sclass=.li.+last\spost\sby;\s*(.+)</div>", 3)
If Not @Error Then _ArrayDisplay($aREgEx)
;

EDIT:

I should have added this information.

If you are already using the _IE* Functions for another reason then use _IEBodyReadHTML() for $sSrc in the code above.

Edited by GEOSoft

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...