private string GetDayOfWeek(DateTime dateTime){var day = dateTime.DayOfWeek;string week = string.Empty;switch (day){case DayOfWeek.Monday:week = "월"; break;case DayOfWeek.Tuesday:week = "화";break;case DayOfWeek.Wednesday:week = "수";break;case DayOfWeek.Thursday:week = "목";break;case DayOfWeek.Friday:week = "금";break;case DayOfWeek.Saturday:week = "토";break;case DayOfWeek.Sunday:..
날짜와 시간의 형식에 맞춘 String을 DateTime으로 변경해보자. String을 DateTime으로 변경하는 방법은 여러가지 있습니다. 보통 아래방법들이 많이 사용됩니다. 1. Convert.ToDateTime("날짜") - 보통 Type을 변경할때 많이 쓰이는 Convert 함수입니다.2. DateTime.Parse("날짜") - DateTime Class에서 제공하는 메소드로 Convert.ToDateTime과 별반 차이가 없습니다.3. DateTime.TryParse("날짜",bool) - Parse()의 확장형으로 변경과 함께 정상적으로 변경이 되었는지 확인값도 리턴합니다.4. DateTime.ParseExact("날짜","형식") - String에 들어가있는 날짜 형식을 사용자가 지정할수..
ubtract : 해당 인스턴스에서 지정한 날짜와 시간을 뺀다. TimeSpan : 시간 간격을 나타낸다. DateTime : 일반적으로 날짜와 시간으로 표시된 시간을 나타낸다. DateTime Date1 = DateTime.Now; DateTime Date2 = DateTime.Parse("2011-07-01"); TimeSpan dt = Date1.Subtract(Date2); 일반적으로 TimeSpan 을 사용하면 두 시간의 간격을 시간까지 가져온다. 시간간격의 일 구성요소를 가져오고 싶다면 subDate뒤에 .Days을 붙여 사용하면 된다. 출력결과 subDate.Days (.Days를 사용하였을 경우) subDate (.Days를 사용하지 않았을 경우)
using System.Text.RegularExpressions; protected string return_Val = ""; protected void Page_Load(obeject secder, EventArgs e) { string str_Val = ""; str_Val = CheckXSS(return_Val ); Respons.Write(str_Val); } public static string CheckXSS(string str_Regex) { string return_Val = str_Regex.ToLower().Trim(); Regex regex = new .Regex(@"()"); Boolean valBool = regex.IsMatch(return_Val); if (valBool ) ..
OleDb을 이용해서 DB select 하듯이 엑셀내용을 DataTable로 읽어오는 부분입니다. string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=Excel 8.0;", 파일명); OleDbConnection conn = new OleDbConnection(connectionString); conn.Open(); //시트명을 datatable로 반환한다. DataTable worksheets = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); //첫번째 시트를 가져오는 쿼리작성 string commandS..
매번 string 형식을 byte로 잘라서 써야 될때가 많은데 그럴때마다 만들어서 썻던거 같다. 이렇게 정의 해놓고 쓴다면 훨씬 편한듯 하네요. ex)아래 형식을 확인해 보면 값이 = Strin..으로 나오게 됩니다. string str_string = StringCutByte("String이다.", 10, ".."); protected string StringCutByte(string str, int i_ByteCount, string str_attach) { if (i_ByteCount< 3) throw new ArgumentOutOfRangeException("i_ByteCount"); StringBuilder sb = new StringBuilder(i_ByteCount); foreach (cha..
xml string을 DataSet으로 읽기(C#) DataSet 에는 ReadXML이라는 메소드가 있어서, 파일에서는 바로 XML구조를 DataSet으로 읽어낼 수 있습니다. 하지만 문자열에서 읽는 것은 지원하지 않습니다. 문자열을 DataSet으로 읽기 위해서는 MemoryStream 객체를 사용해서 읽은 후에 가능합니다. //데이터셋 선언 System.Data.DataSet dsXML = new DataSet(); //XML형태의 문자열 string strXML = "ACCOUNT;^~!ENTITY;^~!APP0;^~!;^~!"; //문자열을 MemoryStream객체를 사용해서 읽기 System.IO.MemoryStream streamXML = new System.IO.MemoryStream(Sy..
- 장범준
- 화재
- C#기초
- DateTime
- 백종원
- 레시피
- 서울 데이트코스
- 마이리틀
- ASP
- 볼빨간사춘기
- 지진
- 데이트
- c#
- JavaScript
- 백선생
- 4차산업혁명
- MSSQL
- 함수
- 서울 데이트
- 서울데이트 코스
- 집밥 백선생
- 엔플라잉
- 자바스크립트
- clr
- MS-SQL
- 집밥백선생
- SQL
- 지진속보
- ASP.NET
- 집밥
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Total
- Today
- Yesterday