On Sunday, 25 January 2015 at 22:14:09 UTC, Adam D. Ruppe wrote:
On Sunday, 25 January 2015 at 21:24:06 UTC, Suliman wrote:
I need extract data inside rel ("somedata")

string s = element.rel;

Do you mean something like this?

string s = element.rel;
foreach(row; document.querySelectorAll("a[href]"))
{
        auto data = document.querySelectorAll(s);
        writeln(data);
}

Reply via email to