I am looking for a regular expression to match the text between curly brackets.
{one}{two}{three}
I want each of these as separate groups,
If you want 3 groups, your pattern needs 3 groups.
"\\{([^}]*)\\}\\{([^}]*)\\}\\{([^}]*)\\}" ^^^^^^^^^^^^^
(The middle part is the same as the left and right).