0andme.github.io
0andme gitHub

String.replace()

문자열 바꾸기
April 19, 2022
  1. js

String.prototype.replace()

const newStr=str.replace(정규식 or 문자열 , 대체 문자)

반환값은 입력값에 의해 변경된 새로운 문자열이다. 원본 문자열은 훼손되지 않는다.

✤ a를 DD로 변경하기
const str = "abc"
console.log(str.replace(/a/, "DD")) //DDbc

공식 문서


Profile picture