일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- c#
- aspnet
- javascript
- 프로시저
- 엑셀
- SSRS
- 마이크로소프트
- 리포팅서비스
- Excel
- microsoft
- replace()
- 단축키
- attr()
- windows
- 윈도우
- 태그를 입력해 주세요.
- 이클립스
- jQuery
- MS
- 자바스크립트
- IIS
- 윈폼
- oracle
- 비주얼스튜디오
- 오라클
- DataGrid
- ASP
- MSSQL
- Winform
- CONVERT()
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[C#] HTML 태그 제거하기 본문
private string StripHTML(string htmlString)
{
//This pattern Matches everything found inside html tags;
//(.|\n) - > Look for any character or a new line
// *? -> 0 or more occurences, and make a non-greedy search meaning
//That the match will stop at the first available '>' it sees, and not at the last one
//(if it stopped at the last one we could have overlooked
//nested HTML tags inside a bigger HTML tag..)
// Thanks to Oisin and Hugh Brown for helping on this one...
string pattern = @"<(.|\n)*?>";
return Regex.Replace(htmlString,pattern,string.Empty);
}
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] ReportViewer 사용시 오류발생, web.config (0) | 2015.12.08 |
---|---|
[ASP.NET] HTTP 오류 500.21 - Internal Server Error (0) | 2015.12.08 |
[C#] LINQ to SQL(Sum) (0) | 2015.12.08 |
[ASP.NET] LINQ to SQL(group by, sum) (0) | 2015.12.04 |
[ASP.NET] Textbox 배경색 code-behind에서 변경하는 방법 (0) | 2015.12.04 |