I have a String like var foo = 'foo {{Email18}}'. But the digit part is variable or unknown.
I need to get the subString {{Email18}}.
I want to do something like foo.search(/{{Email\d{1,}}}/) which will return me {{Email18}}. How do I do that?
+is semantically equivalent to your quantifier{1,}.