I would like to do parsing in a website source code like this
If (something="<BODY>"):
while (something!="</BODY>"):
if (something="https") :
put the word on a list
The thing is I don't know a way to parse(I mean the function with which I read the source code).
I have the source code in an object i.e MyObj
Which is the best way to do this ?