일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- numpy
- Excel
- django
- dataframe
- Apache
- c#
- list
- matplotlib
- Redshift
- Google Excel
- Google Spreadsheet
- google apps script
- Tkinter
- SQL
- gas
- PANDAS
- 파이썬
- hive
- Kotlin
- Python
- math
- PySpark
- string
- PostgreSQL
- array
- Java
- Mac
- GIT
- Github
- Today
- Total
목록Google (50)
달나라 노트
String 객체의 toLowerCase method는 문자열에 존재하는 모든 알파벳을 소문자로 변환하여 return합니다. String 객체의 toUpperCase method는 문자열에 존재하는 모든 알파벳을 대문자로 변환하여 return합니다. Syntax String.toLowerCase() String.toUpperCase() 사용법은 간단합니다. 위처럼 String에 toLowerCase, toUpperCase method를 적용해주면 됩니다. function myFunction(){ var test_string = 'This is MY laptop. 이것은 나의 노트북입니다.'; Logger.log(test_string.toLowerCase()); } -- Result this is my l..
String 객체의 charCodeAt method는 특정 위치(index)에 존재하는 문자의 unicode값을 return합니다. Syntax String.charCodeAt(index) charCodeAt method는 string(문자)에 적용할 수 있습니다. - index parameter로서 숫자(index)를 전달할 수 있으며, 전달된 index 위치에 있는 문자의 unicode값을 return합니다. function myFunction(){ var test_string = 'This is my laptop. 이것은 나의 노트북입니다.'; Logger.log(test_string.charCodeAt(0)); Logger.log(test_string.charCodeAt(1)); Logger.lo..
String 객체의 length 속성은 문자열의 길이를 나타냅니다. Syntax String.length length 속성은 String객체 있으므로 위처럼 그냥 문자열에 length를 적용시켜주면 됩니다. function myFunction(){ var test_string = 'Apple사과'; Logger.log(test_string.length); } -- Result 7.0 test_string에는 Apple사과 라는 7개의 글자를 가진 텍스트가 적혀있습니다. 여기에 length를 적용시키면 7이 return되며 이것은 문자의 길이(글자수)를 의미합니다.
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 ..