JS로 문자열을 교체할 때 replyText= replyText.replace("aa","");
문자열의 첫 번째 aa만 교체해야 하는 경우가 있습니다. 사용할 수 없습니다. .
다음 방법을 참고하시면 됩니다.
function del_html_tags(str,reallyDo,replaceWith) {
var e=new RegExp(reallyDo,"g")
words = str.replace(e, replacementWith); return word;
}
str은 대상 문자열입니다.
reallyDo는 대체할 대상입니다.
replaceWith는 대체할 대상입니다.
var replyText="
존경합니다, 존중합니다, 존중합니다, 존중합니다
존경합니다, 존중합니다 , 정중하게, 정중하게, 정중하게
";
예:
replyText= del_html_tags(replyText,"
"," ")
replyText= del_html_tags(replyText,"
","");
replyText= del_html_tags(replyText,"
","")
을(를) 얻을 수 있습니다. "