C# ไม่ทราบว่าโต้ดผิดตรงไหนถึงดึงรายชื่อไฟล์ออกมาไม่ครบครับ
โค้ด
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้richTextBox1.Text = "";
string strRegex = @"""url"":""/watch\?v=.*?index=\d{1,})"""; ;
Regex myRegex = new Regex(strRegex, RegexOptions.None);
string strTargetString = TorServices.NetWorkTOR.getHTML(textBox1.Text);
int i = 1;
foreach (Match myMatch in myRegex.Matches(strTargetString))
{
if (!richTextBox1.Text.Contains(myMatch.Groups[1].Value) && myMatch.Groups[1].Value.Length < 300)
{
richTextBox1.Text += myMatch.Groups[2].Value + "https://www.youtube.com" + myMatch.Groups[1].Value + "\n";
i++;
}
}
richTextBox1.Text += "\n\n\n count:" + i;
C# ไม่ทราบว่าโต้ดผิดตรงไหนถึงดึงรายชื่อไฟล์ออกมาไม่ครบครับ
โค้ด
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้