반응형
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
- PySpark
- SQL
- Tkinter
- c#
- Python
- django
- math
- array
- Google Excel
- Google Spreadsheet
- gas
- google apps script
- PANDAS
- numpy
- Github
- Java
- Apache
- Excel
- PostgreSQL
- matplotlib
- dataframe
- GIT
- string
- Mac
- list
- Kotlin
- Redshift
- 파이썬
- hive
Archives
- Today
- Total
목록backtick (1)
달나라 노트
Google Apps Script : ` (Backtick, 여러 줄 문자 표시하기. format. placeholder)
GAS에서 문자열을 나타낼 때에는 따옴표(') 또는 쌍따옴표(")로 문자열을 감싸서 나타냅니다. function myFunction() { console.log('apple'); console.log("apple"); } 이렇게 apple이라는 문자를 표시하려면 따옴표나 쌍따옴표로 묶어서 사용합니다. 그런데 만약 줄바꿈이 있는 문자열을 표시하려고 한다면 따옴표나 쌍따옴표를 이용해도 될까요? function myFunction() { console.log(' line1 line2 line3 '); } 따옴표로 줄바꿈이 있는 텍스트를 감싸서 나타냈습니다. 위 코드는 에러를 발생시킵니다. 단순 따옴표나 쌍따옴표는 줄바꿈이 있는 문자를 담을 수 없습니다. 줄바꿈이 있는 문자를 담기 위해서는 ` (Back tic..
Google Apps Script
2022. 11. 16. 03:04