자바 스크립트 교체 문자열
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);
Reference
이 문제에 관하여(자바 스크립트 교체 문자열), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/askavy/javascript-replace-string-5ao텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)