Can someone help me to figure what's wrong with my pattern?
this is my text: sid='206' x='34.8395' y='32.1178'>×2 (206)
var regex = new RegExp("/x=\'[0-9]+\.[0-9]+\' y=\'[0-9]+\.[0-9]+\'/");
var match;
do {
match = regex.exec(text);
if (match) {
console.log(match[1], match[2], match[3], match[4]);
}
} while (match);