/{xTemplate:(\w+)}/.exec(str)
и str.match(/{xTemplate:(\w+)}/)
получается получить только первое совпадение. Как получить оба xTemplate? const regex = /(\w+)=(\d+)/gm;
const str = `test=2
set=4`;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}