-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
51 lines (45 loc) · 1.47 KB
/
Program.cs
File metadata and controls
51 lines (45 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Net;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.IO;
namespace ArticleDigest
{
class Program
{
static void Main(string[] args)
{
int i = 0;
bool print = false;
char scan = 'a';
char prev = 'a';
WebRequest request = WebRequest.Create("http://www.foxnews.com/politics/2018/08/29/chinese-company-reportedly-hacked-clintons-server-got-copy-every-email-in-real-time.html");
WebResponse response = request.GetResponse();
Stream data = response.GetResponseStream();
string html = String.Empty;
using (StreamReader sr = new StreamReader(data))
{
html = sr.ReadToEnd();
//Console.WriteLine(html);
for (i = 0; i < html.Length; i++)
{
prev = scan;
scan = html[i];
//look for opening <p> tag
if (prev == '<' && scan == 'p')
{ print = true; }
//look for closing </p> tag
if (prev == '/' && scan == 'p')
{ print = false; }
if (print)
{ Console.Write(scan); }
}
}
//wait for input
String pause = Console.ReadLine();
}
}
}