Please check below some a tag link in there I want to receive bosWDC5M1C8oeVu, DaleyBlind_fan, jkjinc1 like this 3word with show this in my listbox or textbox.
@bosWDC5M1C8oeVu
@DaleyBlind_fan
@jkjinc1
www.stackoverflow.com
In my textbox or listbox show line process.
bosWDC5M1C8oeVu
DaleyBlind_fan
jkjinc1
see this code not received data in my listbox what I am want.
HtmlElementCollection bColl = webBrowser1.Document.GetElementsByTagName("a");
foreach (HtmlElement bEl in bColl)
{
if (bEl.GetAttribute("data-aria-label-part") != null)
listBox1.Items.Add(bEl.GetAttribute("href"));
}
this code I am getting all href link but I need only my detection line what I am want.