zachtk8702 0 Report post Posted February 6, 2005 Can anyone explain how to parse a webpage using VB.... Ive never done it so im not familiar. Share this post Link to post Share on other sites
cached 0 Report post Posted March 1, 2005 It's quite simple, really. All you need is an INET control (called INET1 for the sake of not repeatedly calling it an INET control) and a textbox named txtparsethis (same reason as inet1)First make sure that the textbox is multiline.To get the page source into the textbox, do txtparsethis.text = Inet1.OpenURL("http://forums.xisto.com/no_longer_exists/;)Lets say that you are parsing the amount of points someone has here on this site. After making sure you are logged in, get the source, which is at http://forums.xisto.com/.Then after looking at the source, look at the thing that preceeds the points you have and is after the points you have.let strone = preceding and strtwo being the thing after it, dostartlook = instr(1, txtparsethis.text, strone) + len(strone)endlook = instr(startlook,txtparsethis.text,strtwo)pointsstr = mid(txtparsethis,startlook,endlook)points = val(pointsstr) Share this post Link to post Share on other sites
NotoriousZach 0 Report post Posted March 2, 2005 could you just change text1.text to something like Source for the sake of not having to put a textbox on the webpage or will that mess things up? Share this post Link to post Share on other sites
NotoriousZach 0 Report post Posted March 2, 2005 Hey I figured that out, now Ihave 2 questions....... Say when im looking in the source and there is a space (like they hit enter twice) then more stuff that I need to add to the after part so it is specific enough....... How would I go about making it not read the blank lines......Also, how would I parse a certain vertical field in a table like.<TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] <TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] <TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] <TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] <TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] <TD></TD> <TD></TD></TR><Tr>[ FIELD 1] [ FIELD 2] Something like that for instance, how would I parse the entire FIELD 1...... Share this post Link to post Share on other sites
magiccode9 0 Report post Posted November 2, 2005 hi, NotoriousZach if iam not wrong, you wanted to replace the extra space and enter key char,if so, you can use the replace and instr function to do that. do while(something check or value that be true)do while(something check) pos = instr("space to find") // this will find the first char that is space char (then) call a function to check if following is also space, if so, go on to check the next unlti that is false(not the space char) if("function return value") = "some value" then // you can have the value return as object, so you can check state & position value startpos = startpos + 1 exit do elseif(("function return other value") = "some other value" then replace the found space char("will more than 1") to single space char statrtpos = new pos end ifloop here, you should have a set of variable that hold space char start and end pos. it can then be safe to use replace function to override that with a single space char or other that you easy to maintain hereafter( for building parsing tree ).loop - hope this help- Eric Share this post Link to post Share on other sites
joeymuch 0 Report post Posted November 25, 2005 theres a parseing routine on planet-source-code.com Share this post Link to post Share on other sites