자바 스크립트 교체 문자열

3955 단어
구문 및 예제와 함께 문자열 메서드 replace()를 사용하는 방법, 문자열에서 모든 항목을 바꾸는 방법, 정규식(regex)을 사용하여 srting을 바꾸는 방법

javascript replace string () 지정된 문자열 또는 정규 표현식의 발생을 대체 문자열로 대체하는 데 사용되는 함수입니다.


   var string = "Blue need to replace";
   var result = string.replace(/Blue/g, "red");   //  red need to replace

 console.log(result);



자바스크립트 정규식 바꾸기

  var string = "Blue   need   to          replace";
  var result = string.replace(/\s{2,}/g, ' ');   // Blue need to replace

console.log(result);


JavaScript는 특수 문자를 빈 문자열로 대체합니다. Regex

 var string = "This is a <<<<!!!!st st>ring??? What ^^^";
 var result = string.replace(/[^a-zA-Z 0-9]+/g,'');   //  This is a st string What 

 console.log(result);


한 번의 바꾸기에서 여러 문자 바꾸기(정규식 OR 연산자 |)

 var string = "#Replace_string-example:";
 var result = string.replace(/#|_|-/g,' ');  // Replace string example: 

        console.log(result);

좋은 웹페이지 즐겨찾기