Answer the question
In order to leave comments, you need to log in
How to take data from the page and display it in a convenient form?
Let me start by saying that I am not a programmer. I would like some online service on which I could specify the URL of the page I need, the necessary selectors, and through regex I could specify what to take and where to display ... After that, get a ready page on which I can always get an updated result, in a form convenient for you. (I think it is called parsing)
For example there is a page which contains all the information about a certain game, and they are in this form:
dsf_nickName_dsf_dfsd_dsf_756s_password_sdjfe_e8_192.168.1.1_dsf_nickName_dsf_dfsd_dsf_756s_password_sdjfe_e8_192.168.1.1_dsf_nickName_dsf_dfsd_dsf_756s_password_sdjfe_e8_192.168.1.1_dsf_nickName_dsf_dfsd_dsf_756s_password_sdjfe_e8_192.168.1.1_dsf_nickName_dsf_dfsd_dsf_756s_password_sdjfe_e8_192.168.1.1
I would like to be able to get them in this form:
Login: nickName
Password: password
IP: 192.168.1.1
_______________________
Login: nickName
Password: password
IP: 192.168.1.1
_______________________
Login: nickName
Password: password
IP: 192.168.1.1
_______________________
Is there a way do this?
Answer the question
In order to leave comments, you need to log in
Specifically, this task is easily solved through any text editor.
Insert your text, and through the "search / replace" replace "nickname" with "paragraph character + nickname", password and ip are also replaced. If necessary, clean from the characters _ replacing with a space or empty space.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question