3
I need to pick up any text and find the words (or phrases) that are between two specific characters {
and }
, in that case.
I can do this by capturing the delimiters together, using the expression {(.*?)}
, but I need the string
come without the two limit characters ({}
).
I tagged regex but I accept answers that do not use regex.
Try this: [^{(.*?)}]
– gato