private void button4_Click(object sender, EventArgs e) { string fileContent = string.Empty; fileContent = HTMLCodeSnippet.ReadTextFileUsingDialougeBox(); tbResultData.Text = string.Join(Environment.NewLine, HTMLCodeSnippet.ExtractYouTubeVideoURLs(fileContent)); tbRawData.Text = "Extract URL using file"; }
private void button6_Click(object sender, EventArgs e) { tbResultData.Text = HTMLCodeSnippet.ReadTextFileUsingDialougeBox(); }