반응형
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
- Python
- string
- Redshift
- 파이썬
- Mac
- PANDAS
- Kotlin
- GIT
- c#
- google apps script
- SQL
- Tkinter
- matplotlib
- numpy
- Google Spreadsheet
- django
- gas
- dataframe
- array
- math
- Github
- Java
- Apache
- PostgreSQL
- hive
- list
- PySpark
- Excel
- Google Excel
Archives
- Today
- Total
달나라 노트
Google Apps Script : concat, + (문자열 연결하기) 본문
728x90
반응형
문자열을 연결하는 방법은 크게 2가지가 있습니다.
concat method를 사용하는 것과, + 연산자를 사용하는 것.
Syntax
String.concat(text1, text2, ...)
concat method는 위처럼 어떠한 문자열(String)에 적용할 수 있습니다.
그리고 parameter로서 연결할 문자들을 원하는 만큼 전달하면 됩니다.
text1 + text2 + text3 + ...
+연산자를 이용하여 텍스트를 연결할 때에는 위처럼 그냥 + 연산자로 모두 더해주면 됩니다.
예시를 살펴봅시다.
function myFunction(){
var text1 = 'Apple';
var text2 = 'Banana';
var text3 = 'Peach';
var text4 = 'Melon';
var text_concat = text1.concat(text2, text3, text4);
Logger.log(text_concat);
}
-- Result
AppleBananaPeachMelon
먼저 concat method를 사용한 예시입니다.
- var text_concat = text1.concat(text2, text3, text4);
text1에 concat을 적용하고 text2, text3, text4를 parameter로 전달하였습니다.
결과를 보면 text1에 text2, text3, text4가 연결된 문자열이 return됩니다.
function myFunction(){
var text1 = 'Apple';
var text2 = 'Banana';
var text3 = 'Peach';
var text4 = 'Melon';
var text_concat1 = text1 + text2 + text3 + text4;
Logger.log(text_concat1);
}
-- Result
AppleBananaPeachMelon
이번에는 + 연산자를 이용한 것입니다.
결과는 conat method를 이용한 것과 동일합니다.
function myFunction(){
var text = '12';
var number = 34
var result = text + number;
Logger.log(result);
}
-- Result
1234
위 예시를 보면 12와 34를 더하고있습니다.
근데 12는 따옴표로 묶여있어서 텍스트 type이고 number는 34라는 숫자입니다.
이 두개를 합치면 34라는 숫자가 자동으로 string으로 변환되어 12 + 34 = 36이 아닌
문자 12와 문자 34를 연결한 1234가 return됩니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Google Apps Script : lastIndexOf (일치하는 가장 마지막 문자열 찾기) (0) | 2022.12.01 |
---|---|
Google Apps Script : includes (문자 포함 여부 판단) (0) | 2022.11.30 |
Google Apps Script : startsWith, endsWith (문자열이 시작 글자 확인, 문자열의 끝 글자 확인) (0) | 2022.11.30 |
Google Apps Script : substring, slice (문자열 자르기) (0) | 2022.11.30 |
Google Apps Script : toLowerCase, toUpperCase (소문자로 변환, 대문자로 변환) (0) | 2022.11.30 |
Comments