Morning All
I have a javascript regular expression that doesn\'t work correctly and I\'m not sure why.
I\'m calling the API at https://uptimerobot.com, and g
Escape all the backslashes one more time because within " delimiters, you must escape the backslash one more time or otherwise it would be treated as an escape sequence.
"
var regEx = new RegExp("^[a-zA-Z]+\\(\\{.*\\}\\)$", "m");
DEMO