πŸ’¬ 32.1 String μƒμ„±μž ν•¨μˆ˜

ν‘œμ€€ 빌트인 객체인 String κ°μ²΄λŠ” μƒμ„±μž ν•¨μˆ˜ 객체이닀. λ”°λΌμ„œ new μ—°μ‚°μžμ™€ ν•¨κ»˜ ν˜ΈμΆœν•˜λ©΄ String μΈμŠ€ν„΄μŠ€λ₯Ό 생성할 수 μžˆλ‹€.

const strObj = new String();
console.log(strObj); // String {length: 0, [[PrimitiveValue]]: ""}

String μƒμ„±μž ν•¨μˆ˜μ— 인수λ₯Ό μ „λ‹¬ν•˜μ§€ μ•Šκ³  new μ—°μ‚°μžμ™€ ν•¨κ»˜ ν˜ΈμΆœν•˜λ©΄ [[StringData]] λ‚΄λΆ€ μŠ¬λ‘―μ— 빈 λ¬Έμžμ—΄μ„ ν• λ‹Ήν•œ String 래퍼 객체λ₯Ό μƒμ„±ν•œλ‹€.

const strObj = new String('Lee');
console.log(strObj);
// String {0: "L", 1: "e", 2: "e", length: 3, [[PrimitiveValue]]: "Lee"}

String μƒμ„±μž ν•¨μˆ˜μ˜ 인수둜 λ¬Έμžμ—΄μ΄ μ•„λ‹Œ 값을 μ „λ‹¬ν•˜λ©΄ 인수λ₯Ό λ¬Έμžμ—΄λ‘œ κ°•μ œ λ³€ν™˜ν•œ ν›„, [[StringData]] λ‚΄λΆ€ μŠ¬λ‘―μ— λ³€ν™˜λœ λ¬Έμžμ—΄μ„ ν• λ‹Ήν•œ String 래퍼 객체λ₯Ό μƒμ„±ν•œλ‹€.

let strObj = new String(123);
console.log(strObj);
// String {0: "1", 1: "2", 2: "3", length: 3, [[PrimitiveValue]]: "123"}

strObj = new String(null);
console.log(strObj);
// String {0: "n", 1: "u", 2: "l", : "l", length: 4, [[PrimitiveValue]]: "null"}

new μ—°μ‚°μžλ₯Ό μ‚¬μš©ν•˜μ§€ μ•Šκ³  String μƒμ„±μž ν•¨μˆ˜λ₯Ό ν˜ΈμΆœν•˜λ©΄ String μΈμŠ€ν„΄μŠ€κ°€ μ•„λ‹Œ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€. 이λ₯Ό μ΄μš©ν•΄ λͺ…μ‹œμ μœΌλ‘œ νƒ€μž…λ³€ν™˜μ΄ κ°€λŠ₯ν•˜λ‹€.

// 숫자 νƒ€μž… => λ¬Έμžμ—΄ νƒ€μž…
String(1);        // -> "1"
String(NaN);      // -> "NaN"
String(Infinity); // -> "Infinity"

// λΆˆλ¦¬μ–Έ νƒ€μž… => λ¬Έμžμ—΄ νƒ€μž…
String(true);  // -> "true"
String(false); // -> "false"

πŸ’¬ 32.2 length ν”„λ‘œνΌν‹°

length ν”„λ‘œνΌν‹°λŠ” λ¬Έμžμ—΄μ˜ 개수λ₯Ό λ°˜ν™˜ν•œλ‹€.

'Hello'.length;    // -> 5
'μ•ˆλ…•ν•˜μ„Έμš”!'.length; // -> 6

String 래퍼 κ°μ²΄λŠ” λ°°μ—΄κ³Ό λ§ˆμ°¬κ°€μ§€λ‘œ length ν”„λ‘œνΌν‹°λ₯Ό κ°–λŠ”λ‹€. 그리고 인덱슀λ₯Ό λ‚˜νƒ€λ‚΄λŠ” 숫자λ₯Όν”„λ‘œνΌν‹° ν‚€λ‘œ, 각 문자λ₯Ό ν”„λ‘œνΌν‹° κ°’μœΌλ‘œ κ°€μ§€λ―€λ‘œ String 래퍼 κ°μ²΄λŠ” μœ μ‚¬ λ°°μ—΄ 객체닀.

πŸ’¬ 32.3 String λ©”μ„œλ“œ

String κ°μ²΄μ—λŠ” 배열객체와 달리 원본 String 래퍼 객체λ₯Ό 직접 λ³€κ²½ν•˜λŠ” λ©”μ„œλ“œλŠ” μ‘΄μž¬ν•˜μ§€ μ•ŠλŠ”λ‹€.즉, String 객체의 λ©”μ„œλ“œλŠ” μ–Έμ œλ‚˜ μƒˆλ‘œμš΄ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€. λ¬Έμžμ—΄μ€ λ³€κ²½ λΆˆκ°€λŠ₯ν•œ μ›μ‹œ 값이기 λ•Œλ¬Έμ— String 래퍼 객체도 읽기 μ „μš© 객체둜 μ œκ³΅λœλ‹€.

const strObj = new String('Lee');

console.log(Object.getOwnPropertyDescriptors(strObj));
/* String 래퍼 κ°μ²΄λŠ” 읽기 μ „μš© 객체닀. 즉, writable ν”„λ‘œνΌν‹° μ–΄νŠΈλ¦¬λ·°νŠΈ 값이 falseλ‹€.
{
  '0': { value: 'L', writable: false, enumerable: true, configurable: false },
  '1': { value: 'e', writable: false, enumerable: true, configurable: false },
  '2': { value: 'e', writable: false, enumerable: true, configurable: false },
  length: { value: 3, writable: false, enumerable: false, configurable: false }
}
*/

βœ” 32.3.1 String.prototype.indexOf

indexOf λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄(λ©”μ„œλ“œλ₯Ό ν˜ΈμΆœν•œ λ¬Έμžμ—΄)μ—μ„œ 인수둜 전달받은 λ¬Έμžμ—΄μ„ κ²€μƒ‰ν•˜μ—¬ 첫 번째 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€. 검색에 μ‹€νŒ¨ν•˜λ©΄ -1을 λ°˜ν™˜ν•œλ‹€. λ‘λ²ˆμ§Έ 인수둜 검색을 μ‹œμž‘ν•  인덱슀λ₯Ό 전달할 수 μžˆλ‹€.

const str = 'Hello World';

// λ¬Έμžμ—΄ strμ—μ„œ 'l'을 κ²€μƒ‰ν•˜μ—¬ 첫 번째 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€.
str.indexOf('l'); // -> 2

// λ¬Έμžμ—΄ strμ—μ„œ 'or'을 κ²€μƒ‰ν•˜μ—¬ 첫 번째 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€.
str.indexOf('or'); // -> 7

// λ¬Έμžμ—΄ strμ—μ„œ 'x'λ₯Ό κ²€μƒ‰ν•˜μ—¬ 첫 번째 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€. 검색에 μ‹€νŒ¨ν•˜λ©΄ -1을 λ°˜ν™˜ν•œλ‹€.
str.indexOf('x'); // -> -1

// λ¬Έμžμ—΄ str의 인덱슀 3λΆ€ν„° 'l'을 κ²€μƒ‰ν•˜μ—¬ 첫 번째 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€.
str.indexOf('l', 3); // -> 3

βœ” 32.3.2 String.prototype.search

search λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ—μ„œ 인수둜 전달받은 μ •κ·œ ν‘œν˜„μ‹κ³Ό λ§€μΉ˜ν•˜λŠ” λ¬Έμžμ—΄μ„ κ²€μƒ‰ν•˜μ—¬ μΌμΉ˜ν•˜λŠ” λ¬Έμžμ—΄μ˜ 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€. 검색에 μ‹€νŒ¨ν•˜λ©΄ -1을 λ°˜ν™˜ν•œλ‹€.

const str = 'Hello world';

// λ¬Έμžμ—΄ strμ—μ„œ μ •κ·œ ν‘œν˜„μ‹κ³Ό λ§€μΉ˜ν•˜λŠ” λ¬Έμžμ—΄μ„ κ²€μƒ‰ν•˜μ—¬ μΌμΉ˜ν•˜λŠ” λ¬Έμžμ—΄μ˜ 인덱슀λ₯Ό λ°˜ν™˜ν•œλ‹€.
str.search(/o/); // -> 4
str.search(/x/); // -> -1

βœ” 32.3.3 String.prototype.includes

includes λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ— 인수둜 전달받은 λ¬Έμžμ—΄μ΄ ν¬ν•¨λ˜μ–΄ μžˆλŠ”μ§€ ν™•μΈν•˜μ—¬ κ·Έ κ²°κ³Όλ₯Ό true λ˜λŠ” false둜 λ°˜ν™˜ν•œλ‹€. 두 번째 인수둜 검색을 μ‹œμž‘ν•  인덱슀λ₯Ό 전달할 수 μžˆλ‹€.

const str = 'Hello world';

str.includes('Hello'); // -> true
str.includes('');      // -> true
str.includes('x');     // -> false
str.includes();        // -> false

βœ” 32.3.4 String.prototype.startsWith

startsWith λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ΄ 인수둜 전달받은 λ¬Έμžμ—΄λ‘œ μ‹œμž‘ν•˜λŠ”μ§€ ν™•μΈν•˜μ—¬ κ·Έ κ²°κ³Όλ₯Ό true λ˜λŠ” false둜 λ°˜ν™˜ν•œλ‹€. 두 번째 인수둜 검색을 μ‹œμž‘ν•  인덱슀λ₯Ό 전달할 수 μžˆλ‹€.

const str = 'Hello world';

// λ¬Έμžμ—΄ str이 'He'둜 μ‹œμž‘ν•˜λŠ”μ§€ 확인
str.startsWith('He'); // -> true
// λ¬Έμžμ—΄ str이 'x'둜 μ‹œμž‘ν•˜λŠ”μ§€ 확인
str.startsWith('x'); // -> false
// λ¬Έμžμ—΄ str의 인덱슀 5λΆ€ν„° μ‹œμž‘ν•˜λŠ” λ¬Έμžμ—΄μ΄ ' '둜 μ‹œμž‘ν•˜λŠ”μ§€ 확인
str.startsWith(' ', 5); // -> true

βœ” 32.3.5 String.prototype.endsWith

endsWith λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ΄ 인수둜 전달받은 λ¬Έμžμ—΄λ‘œ λλ‚˜λŠ”μ§€ ν™•μΈν•˜μ—¬ κ·Έ κ²°κ³Όλ₯Ό true λ˜λŠ” false둜 λ°˜ν™˜ν•œλ‹€. 두 번째 인수둜 검색할 λ¬Έμžμ—΄μ˜ 길이λ₯Ό 전달할 수 μžˆλ‹€.

const str = 'Hello world';

// λ¬Έμžμ—΄ str이 'ld'둜 λλ‚˜λŠ”μ§€ 확인
str.endsWith('ld'); // -> true
// λ¬Έμžμ—΄ str이 'x'둜 λλ‚˜λŠ”μ§€ 확인
str.endsWith('x'); // -> false
// λ¬Έμžμ—΄ str의 μ²˜μŒλΆ€ν„° 5μžλ¦¬κΉŒμ§€('Hello')κ°€ 'lo'둜 λλ‚˜λŠ”μ§€ 확인
str.endsWith('lo', 5); // -> true

βœ” 32.3.6 String.prototype.charAt

charAt λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ—μ„œ 인수둜 전달받은 μΈλ±μŠ€μ— μœ„μΉ˜ν•œ 문자λ₯Ό κ²€μƒ‰ν•˜μ—¬ λ°˜ν™˜ν•œλ‹€.

const str = 'Hello';

for (let i = 0; i < str.length; i++) {
  console.log(str.charAt(i)); // H e l l o
}

βœ” 32.3.7 String.prototype.substring

substring λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ—μ„œ 첫 번째 인수둜 전달받은 μΈλ±μŠ€μ— μœ„μΉ˜ν•˜λŠ” λ¬ΈμžλΆ€ν„° 두 번째 인수(μƒλž΅ κ°€λŠ₯) 둜 전달받은 μΈλ±μŠ€μ— μœ„μΉ˜ν•˜λŠ” 문자의 λ°”λ‘œ 이전 λ¬ΈμžκΉŒμ§€μ˜ λΆ€λΆ„ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = 'Hello World';

// 인덱슀 1λΆ€ν„° 인덱슀 4 μ΄μ „κΉŒμ§€μ˜ λΆ€λΆ„ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.
str.substring(1, 4); // -> ell
const str = 'Hello World'; // str.length == 11

// 첫 번째 인수 > 두 번째 인수인 경우 두 μΈμˆ˜λŠ” κ΅ν™˜λœλ‹€.
str.substring(4, 1); // -> 'ell'

// 인수 < 0 λ˜λŠ” NaN인 경우 0으둜 μ·¨κΈ‰λœλ‹€.
str.substring(-2); // -> 'Hello World'

// 인수 > λ¬Έμžμ—΄μ˜ 길이(str.length)인 경우 μΈμˆ˜λŠ” λ¬Έμžμ—΄μ˜ 길이(str.length)으둜 μ·¨κΈ‰λœλ‹€.
str.substring(1, 100); // -> 'ello World'
str.substring(20); // -> ''
const str = 'Hello World';

// 슀페이슀λ₯Ό κΈ°μ€€μœΌλ‘œ μ•žμ— μžˆλŠ” λΆ€λΆ„ λ¬Έμžμ—΄ 취득
str.substring(0, str.indexOf(' ')); // -> 'Hello'

// 슀페이슀λ₯Ό κΈ°μ€€μœΌλ‘œ 뒀에 μžˆλŠ” λΆ€λΆ„ λ¬Έμžμ—΄ 취득
str.substring(str.indexOf(' ') + 1, str.length); // -> 'World'

βœ” 32.3.8 String.prototype.slice

slice λ©”μ„œλ“œλŠ” substring λ©”μ„œλ“œμ™€ λ™μΌν•˜κ²Œ 동μž₯ν•œλ‹€. 단, slice λ©”μ„œλ“œμ—λŠ” 음수인 인수λ₯Ό 전달할 수 μžˆλ‹€. 음수인 인수λ₯Ό μ „λ‹¬ν•˜λ©΄ λŒ€μƒ λ¬Έμžμ—΄μ˜ κ°€μž₯ λ’€μ—μ„œλΆ€ν„° μ‹œμž‘ν•˜μ—¬ λ¬Έμžμ—΄μ„ μž˜λΌλ‚΄μ–΄ λ°˜ν™˜ν•œλ‹€.

const str = 'hello world';

// substringκ³Ό slice λ©”μ„œλ“œλŠ” λ™μΌν•˜κ²Œ λ™μž‘ν•œλ‹€.
// 0λ²ˆμ§ΈλΆ€ν„° 5번째 이전 λ¬ΈμžκΉŒμ§€ μž˜λΌλ‚΄μ–΄ λ°˜ν™˜
str.substring(0, 5); // -> 'hello'
str.slice(0, 5); // -> 'hello'

// μΈλ±μŠ€κ°€ 2인 λ¬ΈμžλΆ€ν„° λ§ˆμ§€λ§‰ λ¬ΈμžκΉŒμ§€ μž˜λΌλ‚΄μ–΄ λ°˜ν™˜
str.substring(2); // -> 'llo world'
str.slice(2); // -> 'llo world'

// 인수 < 0 λ˜λŠ” NaN인 경우 0으둜 μ·¨κΈ‰λœλ‹€.
str.substring(-5); // -> 'hello world'
// slice λ©”μ„œλ“œλŠ” 음수인 인수λ₯Ό 전달할 수 μžˆλ‹€. λ’€μ—μ„œ 5자리λ₯Ό μž˜λΌλ‚΄μ–΄ λ°˜ν™˜ν•œλ‹€.
str.slice(-5); // ⟢ 'world'

βœ” 32.3.9 String.prototype.toUpperCase

toUpperCase λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ„ λͺ¨λ‘ λŒ€λ¬Έμžλ‘œ λ³€κ²½ν•œ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = 'Hello World!';

str.toUpperCase(); // -> 'HELLO WORLD!'

βœ” 32.3.10 String.prototype.toLowerCase

toLowerCase λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ„ λͺ¨λ‘ μ†Œλ¬Έμžλ‘œ λ³€κ²½ν•œ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = 'Hello World!';

str.toLowerCase(); // -> 'hello world!'

βœ” 32.3.11 String.prototype.trim

trim λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄ μ•žλ’€μ— 곡백 λ¬Έμžκ°€ μžˆμ„ 경우 이λ₯Ό μ œκ±°ν•œ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = '   foo  ';

str.trim(); // -> 'foo'

String.prototype.trimStart, String.prototype.trimEnd λ₯Ό μ‚¬μš©ν•˜κ±°λ‚˜ μ •κ·œ ν‘œν˜„μ‹μ„ μ‚¬μš©ν• μˆ˜λ„ μžˆλ‹€.

const str = '   foo  ';

// String.prototype.{trimStart,trimEnd} : Proposal stage 4
str.trimStart(); // -> 'foo  '
str.trimEnd();   // -> '   foo'
// 첫 번째 인수둜 μ „λ‹¬ν•œ μ •κ·œ ν‘œν˜„μ‹μ— λ§€μΉ˜ν•˜λŠ” λ¬Έμžμ—΄μ„ 두 번째 인수둜 μ „λ‹¬ν•œ λ¬Έμžμ—΄λ‘œ μΉ˜ν™˜ν•œλ‹€.
str.replace(/\s/g, '');   // -> 'foo'
str.replace(/^\s+/g, ''); // -> 'foo  '
str.replace(/\s+$/g, ''); // -> '   foo'

βœ” 32.3.12 String.prototype.repeat

repeat λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ„ 인수둜 전달받은 μ •μˆ˜λ§ŒνΌ λ°˜λ³΅ν•΄ μ—°κ²°ν•œ μƒˆλ‘œμš΄ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = 'abc';

str.repeat();    // -> ''
str.repeat(0);   // -> ''
str.repeat(1);   // -> 'abc'
str.repeat(2);   // -> 'abcabc'
str.repeat(2.5); // -> 'abcabc' (2.5 β†’ 2)
str.repeat(-1);  // -> RangeError: Invalid count value

βœ” 32.3.13 String.prototype.replace

replace λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ—μ„œ 첫 번째 인수둜 전달받은 λ¬Έμžμ—΄ λ˜λŠ” μ •κ·œ ν‘œν˜„μ‹μ„ κ²€μƒ‰ν•˜μ—¬ 두 번째 인수둜 μ „λ‹¬ν•œ λ¬Έμžμ—΄λ‘œ μΉ˜ν™˜ν•œ λ¬Έμžμ—΄μ„ λ°˜ν™˜ν•œλ‹€.

const str = 'Hello world';

// strμ—μ„œ 첫 번째 인수 'world'λ₯Ό κ²€μƒ‰ν•˜μ—¬ 두 번째 인수 'Lee'둜 μΉ˜ν™˜ν•œλ‹€.
str.replace('world', 'Lee'); // -> 'Hello Lee'

κ²€μƒ‰λœ λ¬Έμžμ—΄μ΄ μ—¬λŸΏ μ‘΄μž¬ν•  경우 첫 번째둜 κ²€μƒ‰λœ λ¬Έμžμ—΄λ§Œ μΉ˜ν™˜ν•œλ‹€.

const str = 'Hello world world';

str.replace('world', 'Lee'); // -> 'Hello Lee world'

replace λ©”μ„œλ“œμ˜ 두 번째 인수둜 μΉ˜ν™˜ ν•¨μˆ˜λ₯Ό 전달할 수 μžˆλ‹€. replace λ©”μ„œλ“œλŠ” 첫 번째 인수둜 μ „λ‹¬ν•œ λ¬Έμžμ—΄ λ˜λŠ” μ •κ·œ ν‘œν˜„μ‹μ— λ§€μΉ˜ν•œ κ²°κ³Όλ₯Ό 두 번째 인수둜 μ „λ‹¬ν•œ μΉ˜ν™˜ ν•¨μˆ˜μ˜ 인수둜 μ „λ‹¬ν•˜λ©΄μ„œ ν˜ΈμΆœν•˜κ³  μΉ˜ν™˜ ν•¨μˆ˜κ°€ λ°˜ν™˜ν•œ 결과와 맀치 κ²°κ³Όλ₯Ό μΉ˜ν™˜ν•œλ‹€.

λ‹€μŒμ€ 카멜 μΌ€μ΄μŠ€λ₯Ό μŠ€λ„€μ΄ν¬ μΌ€μ΄μŠ€λ‘œ, μŠ€λ„€μ΄ν¬ μΌ€μ΄μŠ€λ₯Ό 카멜 μΌ€μ΄μŠ€λ‘œ λ³€κ²½ν•˜λŠ” ν•¨μˆ˜λ‹€.

// 카멜 μΌ€μ΄μŠ€λ₯Ό μŠ€λ„€μ΄ν¬ μΌ€μ΄μŠ€λ‘œ λ³€ν™˜ν•˜λŠ” ν•¨μˆ˜
function camelToSnake(camelCase) {
  // /.[A-Z]/gλŠ” μž„μ˜μ˜ ν•œ λ¬Έμžμ™€ λŒ€λ¬Έμžλ‘œ 이루어진 λ¬Έμžμ—΄μ— λ§€μΉ˜ν•œλ‹€.
  // μΉ˜ν™˜ ν•¨μˆ˜μ˜ 인수둜 맀치 κ²°κ³Όκ°€ μ „λ‹¬λ˜κ³ , μΉ˜ν™˜ ν•¨μˆ˜κ°€ λ°˜ν™˜ν•œ 결과와 맀치 κ²°κ³Όλ₯Ό μΉ˜ν™˜ν•œλ‹€.
  return camelCase.replace(/.[A-Z]/g, match => {
    console.log(match); // 'oW'
    return match[0] + '_' + match[1].toLowerCase();
  });
}

const camelCase = 'helloWorld';
camelToSnake(camelCase); // -> 'hello_world'

// μŠ€λ„€μ΄ν¬ μΌ€μ΄μŠ€λ₯Ό 카멜 μΌ€μ΄μŠ€λ‘œ λ³€ν™˜ν•˜λŠ” ν•¨μˆ˜
function snakeToCamel(snakeCase) {
  // /_[a-z]/gλŠ” _와 μ†Œλ¬Έμžλ‘œ 이루어진 λ¬Έμžμ—΄μ— λ§€μΉ˜ν•œλ‹€.
  // μΉ˜ν™˜ ν•¨μˆ˜μ˜ 인수둜 맀치 κ²°κ³Όκ°€ μ „λ‹¬λ˜κ³ , μΉ˜ν™˜ ν•¨μˆ˜κ°€ λ°˜ν™˜ν•œ 결과와 맀치 κ²°κ³Όλ₯Ό μΉ˜ν™˜ν•œλ‹€.
  return snakeCase.replace(/_[a-z]]/g, match => {
    console.log(match); // '_w'
    return match[1].toUpperCase();
  });
}

const snakeCase = 'hello_world';
snakeToCamel(snakeCase); // -> 'helloWorld'

βœ” 32.3.14 String.prototype.split

split λ©”μ„œλ“œλŠ” λŒ€μƒ λ¬Έμžμ—΄μ—μ„œ 첫 번째 인수둜 μ „λ‹¬ν•œ λ¬Έμžμ—΄ λ˜λŠ” μ •κ·œ ν‘œν˜„μ‹μ„ κ²€μƒ‰ν•˜μ—¬ λ¬Έμžμ—΄μ„ κ΅¬λΆ„ν•œ ν›„ λΆ„λ¦¬λœ 각 λ¬Έμžμ—΄λ‘œ 이루어진 배열을 λ°˜ν™˜ν•œλ‹€. 인수둜 빈 λ¬Έμžμ—΄μ„ μ „λ‹¬ν•˜λ©΄ 각 문자λ₯Ό λͺ¨λ‘ λΆ„λ¦¬ν•˜κ³ , 인수λ₯Ό μƒλž΅ν•˜λ©΄ λŒ€μƒ λ¬Έμžμ—΄ 전체λ₯Ό 단일 μš”μ†Œλ‘œ ν•˜λŠ” 배열을 λ°˜ν™˜ν•œλ‹€. 두 번째 인수둜 λ°°μ—΄μ˜ 길이λ₯Ό μ €μž₯ν•  수 μžˆλ‹€.

const str = 'How are you doing?';

// 곡백으둜 ꡬ뢄(λ‹¨μ–΄λ‘œ ꡬ뢄)ν•˜μ—¬ λ°°μ—΄λ‘œ λ°˜ν™˜ν•œλ‹€.
str.split(' '); // -> ["How", "are", "you", "doing?"]

// \sλŠ” μ—¬λŸ¬ 가지 곡백 문자(슀페이슀, νƒ­ λ“±)λ₯Ό μ˜λ―Έν•œλ‹€. 즉, [\t\r\n\v\f]와 같은 μ˜λ―Έλ‹€.
str.split(/\s/); // -> ["How", "are", "you", "doing?"]

// 인수둜 빈 λ¬Έμžμ—΄μ„ μ „λ‹¬ν•˜λ©΄ 각 문자λ₯Ό λͺ¨λ‘ λΆ„λ¦¬ν•œλ‹€.
str.split(''); // -> ["H", "o", "w", " ", "a", "r", "e", " ", "y", "o", "u", " ", "d", "o", "i", "n", "g", "?"]

// 인수λ₯Ό μƒλž΅ν•˜λ©΄ λŒ€μƒ λ¬Έμžμ—΄ 전체λ₯Ό 단일 μš”μ†Œλ‘œ ν•˜λŠ” 배열을 λ°˜ν™˜ν•œλ‹€.
str.split(); // -> ["How are you doing?"]

// 곡백으둜 κ΅¬λΆ„ν•˜μ—¬ λ°°μ—΄λ‘œ λ°˜ν™˜ν•œλ‹€. 단, λ°°μ—΄μ˜ κΈΈμ΄λŠ” 3이닀
str.split(' ', 3); // -> ["How", "are", "you"]

split λ©”μ„œλ“œλŠ” 배열을 λ°˜ν™˜ν•œλ‹€. λ”°λΌμ„œ Array.prototype.reverse, Array.prototype.join λ©”μ„œλ“œμ™€ ν•¨κ»˜ μ‚¬μš©ν•˜λ©΄ λ¬Έμžμ—΄μ„ μ—­μˆœμœΌλ‘œ 뒀집을 수 μžˆλ‹€.

// 인수둜 전달받은 λ¬Έμžμ—΄μ„ μ—­μˆœμœΌλ‘œ λ’€μ§‘λŠ”λ‹€.
function reverseString(str) {
  return str.split('').reverse().join('');
}

reverseString('Hello world!'); // -> '!dlrow olleH'
profile
μ΄μ‚¬μ€‘μž…λ‹ˆλ‹€!🌟https://velog.io/@devkyoung2

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보