i need to load a web page into, a string manipulate it and get some data out of it. is this possible? ive already done it in AS3...
i need to load a web page into, a string manipulate it and get some data out of it. is this possible? ive already done it in AS3...
You really should've looked at the SCAR manual before asking a question like this.
SString := GetPage('http://www.somerandomwebsite.com');
and then use the string functions that you also can find in the scar manual to parse the info you want from the source code of the webpage.
Such as
SCAR Code:Program New;
Var
String1:string;
Begin
String1 := GetPage('http://www.villavu.com/forum/showthread.php?t=25963?t=28362');
Writeln(String1);
End.
If you want to get useful data out, then you would have to have 1 webpage per info you want to get, or you could use my amazing StrToArray function found here to make it possible to get a lot of info out of 1 page as long as you separate them with the same delimeter.
By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.
There are currently 1 users browsing this thread. (0 members and 1 guests)