반응형
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 |
Tags
- list
- matplotlib
- Mac
- SQL
- math
- Apache
- django
- Excel
- Java
- PANDAS
- string
- GIT
- google apps script
- Google Excel
- Kotlin
- PySpark
- Redshift
- numpy
- hive
- 파이썬
- dataframe
- c#
- PostgreSQL
- Google Spreadsheet
- Tkinter
- Github
- array
- gas
- Python
Archives
- Today
- Total
목록getSeconds (1)
달나라 노트
Google Apps Script : 날짜/시간의 특정 요소 얻기 (getFullYear, getMonth, getDate, getHours, getMinutes, getSeconds)
GAS에서는 날짜/시간 객체에 담긴 요소들을 얻어올 수 있는 함수입니다. 예를들어 2022-11-20 20:13:56 라는 날짜 객체가 있으면 여기서 년도인 2022년을 얻어온다거나, 시간인 20을 얻어온다거나 하는 식이죠. Syntax DateTime.getFullYear() DateTime.getMonth() DateTime.getDate() DateTime.getHours() DateTime.getMinutes() DateTime.getSeconds() 사용법은 간단합니다. 날짜 객체에 위 method들을 적용시켜주면 됩니다. Method Decription Example getFullYear() 년도 값을 return 2022 getMonth() 월 값을 return 0, 1, 2, ..., 10..
Google Apps Script
2022. 11. 21. 03:04