I need to get some text and find the words (or phrases) that are between two specific characters {
and }
, in this case.
I can do this by capturing the delimiters together, using the expression {(.*?)}
, but I need the string
to come without the two limit characters ( {}
).
I've tagged regex but I accept regex that does not use regex .