반응형
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
- array
- Kotlin
- Google Excel
- Python
- Google Spreadsheet
- PySpark
- matplotlib
- Java
- 파이썬
- Tkinter
- PostgreSQL
- Excel
- SQL
- Apache
- numpy
- django
- google apps script
- math
- hive
- gas
- Mac
- list
- c#
- dataframe
- Redshift
- PANDAS
- GIT
- string
- Github
Archives
- Today
- Total
달나라 노트
Google Apps Script : repeat (문자열 반복하기) 본문
728x90
반응형
String 객체의 repeat method는 문자열을 원하는 횟수만큼 반복된 문자열을 return해줍니다.
Syntax
String.repeat(n)
repeat method는 String에 적용할 수 있으며 1개의 parameter를 받습니다.
- n
String을 몇번 반복할지에 대한 횟수를 의미합니다.
function myFunction(){
var test_string = 'Apple';
Logger.log(test_string.repeat(5));
}
-- Result
AppleAppleAppleAppleApple
test_string에 repeat을 적용했습니다.
parameter로 5가 주어졌으니 test_string을 5번 반복한 문자열을 return하라는 의미입니다.
따라서 Apple이라는 문자가 5개 연결된 String이 최종적으로 return되었습니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Comments