17
0
0
رشته ی من:
string = "Test abc test test abc test test test abc test test abc";
این فقط به نظر میرسه که اولین مورد abc رو در رشته بالا حذف میکنه:
string = string.replace('abc', '');
چطور میتونم تمام مواردش رو جایگزین کنم؟
0
0
پاسخ کاربردی
متد 1:
str = str.replace(/abc/g, "replaced text");
متد 2:
str = str.split("abc").join("replaced text");
متد 3:
str = str.replace(new RegExp("abc", "g"), "replaced text");
متد 4:
while(str.includes("abc")){
str = str.replace("abc", "replaced text");
}
ارسال پاسخ به سوال بالا