반응형
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
- dataframe
- Tkinter
- SQL
- Redshift
- Python
- Google Excel
- c#
- PostgreSQL
- Java
- numpy
- Apache
- list
- Excel
- google apps script
- django
- string
- array
- PySpark
- Github
- GIT
- math
- Google Spreadsheet
- gas
- matplotlib
- Mac
- 파이썬
- Kotlin
- PANDAS
- hive
Archives
- Today
- Total
달나라 노트
Google Apps Script : charAt (문자열에서 특정 위치에 있는 문자 return) 본문
Google Apps Script
Google Apps Script : charAt (문자열에서 특정 위치에 있는 문자 return)
CosmosProject 2022. 11. 30. 19:56728x90
반응형
String 객체의 charAt method는 특정 위치(index)에 존재하는 문자를 return합니다.
Syntax
String.charAt(index)
charAt method는 string(문자)에 적용할 수 있습니다.
- index
parameter로서 숫자(index)를 전달할 수 있으며, 전달된 index 위치에 있는 문자를 return합니다.
function myFunction(){
var test_string = 'This is my laptop. 이것은 나의 노트북입니다.';
Logger.log(test_string.charAt(0));
Logger.log(test_string.charAt(1));
Logger.log(test_string.charAt(3));
}
-- Result
T
h
s
test_string에 charAt method를 적용한 예시입니다.
참고로 문자열에서 가장 첫 번째 글자는 index = 0입니다.
This is my laptop. 이것은 나의 노트북입니다.
즉, 위 문자열에서 가장 첫 글자인 T는 index = 0인 것이죠.
두 번째 글자인 h는 index = 1이고, 이렇게 다음 글자로 갈수록 index가 1씩 늘어납니다.
- test_string.charAt(0)
따라서 위 코드의 결과는 T가 return된 것을 볼 수 있습니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Google Apps Script : charCodeAt (문자열에서 특정 위치에 있는 문자의 unicode 값 return) (0) | 2022.11.30 |
---|---|
Google Apps Script : length (문자열 길이, 텍스트 길이, 문자 개수) (0) | 2022.11.30 |
Google Apps Script : Number.MAX_VALUE, Number.MIN_VALUE (표시 가능한 최대값, 표시 가능한 양의 최소값) (0) | 2022.11.30 |
Google Apps Script : Math.E (자연상수, e, Euler Number) (0) | 2022.11.30 |
Google Apps Script : Math.PI (PI, 파이값, 원주율) (0) | 2022.11.30 |
Comments