Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mdb table 합치기
- swift html parser
- Xcode
- 자전거
- euc-kr
- 파이썬
- insert into
- Exif
- EXIF data
- MDB
- 엑셀
- file move
- C#
- python
- VBA
- kanna parser
- 유성
- 대전 업힐
- exifread
- 대전
- 딴지일보 자유게시판 파씽
- 스위프트
- 노은
- dataset
- swift
- 대전 자전거
- html parser
- 달력
- StreamReader
- kanna html parser
Archives
- Today
- Total
Fly to the sky & Return
website Crawling code for naver.com by c# 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Net;
using System.IO;
using System.Text.RegularExpressions;
class Program {
static void Main(string[] args) {
string url = "https://www.naver.com";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader stream = new StreamReader(response.GetResponseStream());
string html = stream.ReadToEnd();
stream.Close();
response.Close();
Regex regex = new Regex(@"(?<=<a href="")[^""]+(?="")");
MatchCollection matches = regex.Matches(html);
foreach (Match match in matches) {
Console.WriteLine(match.Value);
}
}
}
|
cs |
'프로그래밍 > c# & VB 등' 카테고리의 다른 글
Epub reader 만들기 프로젝트..... by c# (0) | 2023.02.12 |
---|---|
text file에 쓰기 & 읽기 (0) | 2023.02.06 |
자식 form이 열려있는지 확인하는 코드 (0) | 2023.02.03 |
c# tabcontrol 상에서 function key 분배하기 (0) | 2020.02.27 |
C# 라벨 프린터 출력을 위한 준비 (0) | 2019.01.21 |