년도 일수 체크 (윤달체크) //윤달 계산 function f_leapyear(yy) { if (yy % 4 == 0 && yy % 100 != 0 || yy % 400 == 0) return 1; else return 0; } // Check how many days there are on the inputted year and month // 년과 달을 입력하면, 한달에 몇일이 있는지 확인하는 함수입니다. function f_dayofmonth(yy, mm) { switch (mm) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: return 31; case 4: case 6: case 9: case 11: return 30; case 2: ..
예제1) 문자열 : 11111111.2222222.33333333.444444.55555555.666666666.777777.8888888.9999999.0000000 정규식 : ^[^\.]*\. replace 삭제 결과 : 2222222.33333333.444444.55555555.666666666.777777.8888888.9999999.0000000 예제2) 문자열 : 11111111;2222222;33333333;444444;55555555;666666666;777777;8888888;9999999;0000000 정규식 : ^[^;]*; replace 삭제 결과 : 2222222;33333333;444444;55555555;666666666;777777;8888888;9999999;0000000
- Total
- Today
- Yesterday
- 아두이노스토리
- code vision
- 우테캠프로
- 코딩
- CONDINGARRAY
- JsonPatch
- code mining
- SI
- 표준프레임워크 배치
- JsonMergePatch
- 표준프레임워크 배치 jar
- coding
- 12FactorApp
- Arduino
- JBR-2732
- 우테캠
- TMK
- 2020.09
- IntelliJ
- 2020.1
- 서비스회사
- 코딩입문
- 아두이노
- jeus8
- JBR-526
- shortkey
- 코딩어레이키트
- intellij느려짐
- 이직
- CODINGARRAYKIT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |