32장 String
32.1 String 생성자 함수
- String 객체는 생성자 함수 객체다.
- String 생성자 함수에 인수를 전달하지 않고 new 연산자와 함께 호출하면 [[StringData]] 내부 슬롯에 빈 문자열을 할당한 String 래퍼 객체를 생성한다.
- String 생성자 함수를 new 연산자와 함께 호출 하면 String 래퍼 객체가 생성된다. 이때 인수의 전달 여부에 따라 [[StringData]] 내부 슬롯에
- 인수 전달 X 의 경우, 빈 문자열을 내부 슬롯에 할당하여 생성한다.
- 인수 전달 O 의 경우, 인수로 전달 받은 문자열을 내부 슬롯에 할당하여 생성한다.
- String 래퍼 객체는 배열과 마찬가지로 length와 인덱스 값을 가지는 유사 배열 객체이면서 이터러블이다.
- 배열과 유사하게 인덱스를 사용하여 각 문자에 접근할 수 있다.
- 단, 문자열은 원시값이므로 변경할 수 없다.
- 생성자 함수의 인수로 문자열이 아닌 값을 전달하면 인수를 문자열로 강제 변환한 후 객체를 생성한다.
- new 연산자 없이 String 생성자 함수를 호출하면 String 인스턴스가 아닌 문장을 반환한다.
const strObj = new String('Lee');
console.log(strObj);
console.log(strObj[0]);
strObj[0] = 'S';
console.log(strObj);
const strObj2 = new String(123);
console.log(strObj2);
const strObj3 = new String(null);
console.log(strObj3);
String(1);
String(NaN);
String(true);
32.2 length 프로퍼티
- 문자열의 문자 개수를 반환한다.
- 인덱스를 나타내는 숫자 프로퍼티 키로, 각 문자를 프로퍼티 값으로 가지므로 String 래퍼 객체는 유사 배열 객체다.
'Hello'.length;
'안녕하세요!'.length;
32.3 String 메서드
- String 객체의 메서드는 언제나 새로운 문자열을 반환한다.
- 문자열은 변경 불가능한 원시값이기 때문에 String 래퍼 객체도 읽기 전용 객체로 제공된다.
32.3.1 String.prototype.indexOf
- indexOf 메서드는 대상 문자열에서 인수로 전달받은 문자열을 검색하여 첫번째 인덱스를 반환한다.
- 검색에 실패하면 -1을 반환한다.
- 2번째 인수로 검색을 시작할 인덱스를 전달할 수 있다.
- 대상 문자열에 특정 문자열이 존재하는지 확인할 때 유용하다.
const str = 'Hello World';
str.indexOf('l');
str.indexOf('or');
str.indexOf('x');
str.indexOf('l', 3);
if(str.indexOf('Hello') !== -1) {
}
if(str.includes('Hello')) {
}
32.3.2 String.prototype.search
- search 메서드는 대상 문자열에서 인수로 전달받은 정규 표현식과 매치하는 문자열을 검색하여 일치하는 문자열의 인덱스를 반환한다.
- 검색에 실패하면 -1을 반환한다.
const str = 'Hello World';
str.search(/l/);
str.search(/o/);
str.search(/x/);
32.3.3 String.prototype.includes
- ES6에서 도입된 includes 메서드는 대상 문자열에 인수로 전달받은 문자열이 포함되어 있는지 확인하여 그 결과를 true 또는 false로 반환한다.
- 2번째 인수로 검색을 시작할 인덱스를 전달 할 수 있다.
const str = 'Hello World';
str.includes('Hello');
str.includes('');
str.includes('x');
str.includes();
str.includes('l', 3);
str.includes('H', 3);
32.3.4 String.prototype.startsWith
- ES6에서 도입된 startsWith 메서드는 대상 문자열이 인수로 전달 받은 문자열로 시작하는지 확인하여 그 결과를 true 또는 false로 반환한다.
- 2번째 인수로 검색을 시작할 인덱스를 전달 할 수 있다.
const str = 'Hello World';
str.startsWith('He');
str.startsWith('x');
str.startsWith(' ', 5);
32.3.5 String.prototype.endsWith
- ES6에서 도입된 endsWith 메서드는 대상 문자열이 인수로 전달받은 문자열로 끝나는지 확인하여 그 결과를 true 또는 false로 반환한다.
- 2번째 인수로 검색할 문자열의 길이를 전달할 수 있다.
const str = 'Hello World';
str.endsWith('ld');
str.endsWith('x');
str.endsWith('lo', 5);
32.3.6 String.prototype.charAt
- charAt 메서드는 대상 문자열에서 인수로 전달받은 인덱스에 위치한 문자를 검색하여 반환한다.
- 인덱스 문자열의 범위는 0 ~ (문자열 길이 - 1 )사이의 정수여야 한다.
- 범위를 벗어나는 경우 빈 문자열을 반환한다.
const str = 'Hello';
for(let i = 0; i < str.length; i++) {
console.log(str.charAt(i));
}
str.charAt(5);
32.3.7 String.prototype.substring
- substring 메서드는 대상 문자열에서 첫 번째 인수로 전달받은 인덱스에 위치하는 문자부터 두 번째 인수로 전달받은 인덱스에 위치하는 문자의 바로 이전 문자까지의 부분 문자열을 반환한다.
- 2번째 인수는 생략 가능. 생략시 시작 인덱스부터 마지막 문자까지 반환한다.
- 인수를 다음과 같이 전달해도 정상 동작한다.
- 첫 번째 인수 > 두 번째 인수인 경우, 두 인수는 교환된다
- 인수 < 0 또는 NaN 인 경우, 0으로 취급된다.
- 인수 > 문자열의 길이인 경우, 인수는 문자열의 길이로 취급된다.
- indexOf 메서드와 함께 사용하면, 특정 문자열을 기준으로 앞뒤에 위치한 부문 문자열을 취득할 수 있다.
const str = 'Hello World';
str.substring(1, 4);
str.substring(1);
str.substring(4, 1);
str.substring(-2);
str.substring(1, 100);
str.substring(20);
str.substring(0, str.indexOf(' '));
str.substring(str.indexOf(' ') + 1, str.length);
32.3.8 String.prototype.slice
- slice 메서드는 substring 메서드와 동일하게 동작한다.
- 단, slice 메서드에는 음수인 인수를 전달할 수 있다.
- 음수인 인수를 전달하면 대상 문자열의 가장 뒤에서부터 시작하여 문자열을 잘라내어 반환한다.
const str = 'hello world';
str.substring(0, 5);
str.slice(0, 5);
str.substring(2);
str.slice(2);
str.substring(-2);
str.slice(-5);
32.3.9 String.prototyp.toUpperCase
- toUpperCase 메서드는 대상 문자열을 모두 대문자로 변경한 문자열을 반환한다.
const str = 'Hello World!';
str.toUpperCase();
32.3.10 String.prototype.toLowerCase
- toLowerCase 메서드는 대상 문자열을 모두 소문자로 변경한 문자열을 반환한다.
const str = 'Hello World!';
str.toLowerCase();
32.3.11 String.prototype.trim
- trim 메서드는 대상 문자열 앞뒤에 공백 문자가 있을 경우 이를 제거한 문자열을 반환한다.
const str = ' foo ';
str.trim();
32.3.12 String.prototype.repeat
- ES6에서 도입된 repeat 메서드는 대상 문자열을 인수로 전달받은 정수만큼 반복해 연결한 새로운 문자열을 반환한다.
- 인수로 전달받은 정수가 0이면 빈 문자열을 반환하고, 음수이면 RangeError를 발생시킨다.
- 인수를 생략하면 기본값 0이 설정된다.
const str = 'abc';
str.repeat();
str.repeat(0);
str.repeat(1);
str.repeat(2);
str.repeat(2);
str.repeat(2.5);
str.repeat(-1);
32.3.13 String.prototype.replace
- replace 메서드는 대상 문자열에서 첫 번째 인수로 전달받은 문자열 또는 정규표현식을 검색하여 두 번째 인수로 전달한 문자열로 치환한 문자열을 반환한다.
- 문자열이 여럿 존재할 경우 첫 번째로 검색된 문자열만 치환한다.
- 특수한 교체 패턴을 사용할 수 있다.
- 첫 번째 인수로 정규 표현식을 전달할 수도 있다.
const str = 'Hello world';
str.replace('world', 'Lee');
const str2 = 'Hello world world';
str2.replace('world', 'Lee');
const str3 = 'Hello Hello';
str3.replace(/hello/gi, 'Lee');
- 두 번째 인수에 치환 함수를 전달할 수 있다. 첫 번째 인수로 전달한 문자열 또는 정규 표현식에 매치한 결과를 두 번째 인수로 전달한 치환 함수의 인수로 전달하면서 호출하고 치환 함수가 반환한 결과의 매치 결과를 치환한다.
function camelToSnake(camelCase) {
return camelCase.replace(/.[A-Z]/g, match => {
console.log(match);
return match[0] + '_' + match[1].toLowerCase();
});
}
const camelCase = 'helloWorld';
camelToSnake(camelCase);
function snakeToCamel(snakeCase) {
return snakeCase.replace(/_[a-z]/g, match => {
console.log(match);
return match[1].toUpperCase();
});
}
const snakeCase = 'hello_world';
snakeToCamel(snakeCase);
32.3.14 String.prototype.split
- split 메서드는 대상 문자열에서 첫 번째 인수로 전달한 문자열 또는 정규 표현식을 검색하여 문자열을 구분한 후 분리된 각 문자열로 이루어진 배열을 반환한다.
- 인수로 빈 문자열을 전달 하면, 각 문자를 모두 분리하고
- 인수를 생략하면 대상 문자열 전체를 단일 요소로 하는 배열을 반환한다.
- 두번째 인수로 배열의 길이를 지정할 수 있다.
const str = 'How are you doing?';
str.split(' ');
str.split(/\s/);
str.split('');
str.split();
str.split(' ', 3);