[부트캠프 JS/Node기초] 210609 문자열 기본 개념 및 정리(2)

밍징·2021년 6월 13일
0

개념복습_ver.

목록 보기
4/30
post-thumbnail

📌 split 메서드

str.split(seperator)
문자 그대로 분리하다 라는 뜻. 이 메서드는 csv 형식을 처리할 때 유용하다고 한다. seperator가 기준이 되는 것. csv 형식은 아래 이미지를 참고할 것. argument 는 분리기준이 되는 문자열. return value는 분리된 문자열이 포함된 배열.

var str = 'Hello from the other side' ;
console.log(str.split(' '));
// [ 'Hello', 'from', 'the', 'other', 'side' ] 
console.log(str.split('H'));
// [ "", "ello from the other side"]
console.log(str.split('o'));
//[ "hello", "fr", "m the", "ther side"]

👉 바로 위에 이미지가 바로 csv 형식

// 줄바꿈을 찾아낼 수도 있다.

ex) var str2 = '연도,제조사,모델,설명,가격
1997,Ford,E350,"ac, abs, moon",3000.00
1999,Chevy,"Venture ""Extended Edition""","",4900.00
1999,Chevy,"Venture ""Extended Edition, Very Large""",,5000.00
1996,Jeep,Grand Cherokee,"MUST SELL!
air, moon roof, loaded",4799.00' ;

cosole.log(str2.split(/n));


📌 substring 메서드

arguement는 시작 index, 끝 index 를 받는다. 시작과 끝 사이의 문자열을 내보낸다. 아래 코드를 보면서 확인한다.

Var str = ‘abcdefghi’;
console.log(str, substring(0,3));  //‘abc’
console.log(str, substring(3, 0)); // ‘abc’
Console.log(str, substring(1, 4)); // ‘bcd’
console.log(str, substring(-1, 4)); //
‘abcd’ //음수는 0으로 취급 
console.log(str, substring(0, 20)); //
‘abcdefghij’ //index범위를 초과하면 전부 다 내보낸다. 

str.slice(start, end) // substring 메서드와 비슷하나 몇가지 차이점이 있다.


📌 toUpperCase 와 toLowerCase 메서드

toUpperCase는 받은 문자열을 모두 대문자로 바꿔준다. 그리고 toLowerCase는 받은 문자열을 모두 소문자로 바꿔준다. immutable하다. 즉, 원본은 변하지 않는다.

console.log(‘ALPHABET’, .toLowerCase)); //‘alphabet’
console.log(‘alphabet’, .toUpperCase());  // ‘ALPHABET’

📌 그외 메서드

  • Trim
  • 공백문자 : 탭문자(\t), Carrige return(\r\n) 및 return 문자(\n)
  • Match
  • Replace
  • 정규표현식
profile
프론트엔드를 공부하고 있는 디자이너 입니다 :D

0개의 댓글

관련 채용 정보