Jump to content
UBot Underground

Removing other things after scrapping urls


Recommended Posts

alert($replace regular expression("http://myspace.com/profile/?id=botoballs", "\\?.*", ""))

 

Could I do it automatically without alert ?

This is what I got for fb.

add list to list(%purls, $scrape attribute(<href=w"*?ref=br_rs&fref=browse_search">, "href"), "Delete", "Global")

How to do remove "?ref=br_rs&fref=browse_search" after scraping the results?

Link to post
Share on other sites
add list to list(%purls, $scrape attribute(<href=w"*?ref=br_rs&fref=browse_search">, "href"), "Delete", "Global")
clear list(%purls_cleaned)
loop($list total(%purls)) {
    add item to list(%purls_cleaned, $replace($next list item(%purls), "?ref=br_rs&fref=browse_search", $nothing), "Delete", "Global")
}

The urls will then be stored in %purls_cleaned.

Link to post
Share on other sites

navigate("http://www.ubotstudio.com/forum/index.php?app=members&module=online&sort_order=desc""Wait")

clear list(%profiles)

add list to list(%profiles$list from text($replace regular expression($scrape attribute(<hovercard-ref="member">"fullhref"), "\\?.*"$nothing), $new line), "Don\'t Delete""Global")

It could be done without the loop which would save on cpu power with lg lists

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...