When I right click and select Inspect element I see the html code.
I think that I begin to understand. I tried to get the title in a similar way as the link: title = scan(x,6,' " ') --> but here I got "Permalink to TITLE" (becasue this entire string is between the 5th and 6th delimiter), and the length of the substring "Permalink to " is in fact 13, so by doing the substr from position 14 you get rid of that substring.
But then I did title = substr(scan(x,6,' " '),14) and got the title, so what does htmldecode exactly do? I searched on Google and the only thing that I found about htmldecode is that it decodes html text, for example it transforms < to <. So what is htmldecode doing in this case? You said that it translated <: into <, but I don't quite understand what this means. Could you please clarify to me?
Thanks!
... View more