I have an input field in a form that I have to check for certain markup that we have setup.
The delimiter is {!, }.
I would like to match everything that's inside the delimiters.
content = /regex/g.exec('{!content}')
futher more the input string can have more than one markup in it.
input = '{!content} {!other}';
['content','other'] = /regex/g.exec('{!content} {!other}')
This is the first part of the problem, now it gets to the fun part.
I also have where certain markup delimiters are not ended correctly and I have to check for those also.
In this case I would like to get:
input = '{!content {!other} {!broken';
['{!content', 'other', '{!broken'] = /regex/g.exec(input);
Update * found a case where the orginal solution from @MikeM is not capturing something that I would like. If the starting delimiter is by itself, I need those to show up in the results array. If the starting delimiter is at the end of the string then it wont capture.
input = '{!content {!other} {!';
['{!content', 'other', '{!'] = /regex/g.exec(input);

+to*, i.e one or more to zero or more, so the regex becomes/\{!([^{}]+)\}|(\{![^{}]*)/g. – MikeM Feb 8 at 19:29