str = “Here are \*\*text1\*\* and \*\*text2\*\* replace those **texts.”
console.log(str.replace(/\*\*.*\*\*/, ‘replaced’)); // Here are replaced texts.
Должно отобразиться “Here are replaced and replaced replace those **texts.”
Примечание - он должен обрабатывать динамические строки между **, а не только для text1 и text2