js string replaceall
// Chrome 85+
str.replaceAll(val, replace_val);
// Older browsers
str.replace(/val/g, replace_val);
js string replaceall
// Chrome 85+
str.replaceAll(val, replace_val);
// Older browsers
str.replace(/val/g, replace_val);
replace all javascript
// change echo with some else
// unique
let gelen.icerik="abc echo abc echo";
let bulunanlar = [...gelen.icerik.matchAll(/echo.*;/g)];
let bulunanlarDizisi = [];
for (const bulunan of bulunanlar) {
bulunanlarDizisi.push(bulunan[0]);
console.log(bulunan[0]);
}
bulunanlarDizisi = [...new Set(bulunanlarDizisi)]; // tekillestirildi
bulunanlarDizisi = bulunanlarDizisi.sort((x, y) => y.length - x.length); // uzundan kisaya
bulunanlarDizisi.forEach((bulunan) => {
let bununla = bulunan + ` echo "\\n";`;
gelen.icerik = gelen.icerik.split(bulunan).join(bununla);
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us