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));
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는 받은 문자열을 모두 소문자로 바꿔준다. immutable하다. 즉, 원본은 변하지 않는다.
console.log(‘ALPHABET’, .toLowerCase)); //‘alphabet’ console.log(‘alphabet’, .toUpperCase()); // ‘ALPHABET’
- Trim
- 공백문자 : 탭문자(\t), Carrige return(\r\n) 및 return 문자(\n)
- Match
- Replace
- 정규표현식