Sign in to follow this  
Stortex

[C#] Need help on parsing from a Website

Recommended Posts

Hello i want to make an Account generator for that i need to get data from a webstie to insert into the other one.

So i use an Webbrowser where i want to parse from but i dont know how....

 

Website (https://www.fakenamegenerator.com/advanced.php)

And i want to get things like phone number name and so on as an string.

 

Also it would be nice if someone can tell me how to set the range slider to a certain number and so on.

 

Thank you

:fiesta:

Share this post


Link to post
Share on other sites

This is a bump

Share this post


Link to post
Share on other sites

Instead of using a web browser, you can use a WebClient, e.g:

 

Note: it will download the source of the website

 

string data = new WebClient().DownloadString("https://www.fakenamegenerator.com/advanced.php").ToString();
// After, you can use Regex to get the data you want

Share this post


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.
Note: Your post will require moderator approval before it will be visible.

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.

Sign in to follow this