const firstLine = " Call me Ishmael ";
console.log(firstLine.replace(/ /g, ""));
const firstLine = " Call me Ishmael ";
console.log(firstLine);
//trim()은 문자열 앞뒤의 공백을 메꿔준다
console.log(firstLine.trim());
//replace는 특정 문자를 특정 값으로 변환해 주는데, 하나만 변경된다
console.log(firstLine.replace(" ", ""));
//replaceAll는 특정 문자를 특정 값으로 변환해 주는데, 전체가 변경된다
//하지만 지원하지 않는 브라우저도 있다
console.log(firstLine.replaceAll(" ", ""));
//정규 표현식으로 전체 문자열에서 바꿔주면 된다
console.log(firstLine.replace(/ /g, ""));
결과
Call me Ishmael
Call me Ishmael
Call me Ishmael
CallmeIshmael
CallmeIshmael
[GCP] Firebase Emulator Suite 에러 (1) | 2022.02.22 |
---|---|
[JS] crypto-js HmacMD5 암호화 / 복호화 (0) | 2022.02.21 |
[JS, TS] javascript, typescript에서 key/value 객체에 값 추가하기 (0) | 2022.02.18 |
[GCP] Cloudfunction 초기 설정 및 프로젝트 이동 (0) | 2022.02.17 |
[JS] 숫자 더하기 (0) | 2022.02.17 |
댓글 영역