I have a line like this, with a \t at the beginning:
{ABC-1234-22 ABC-2345-4444}
With my first regex
\t\{(ABC-\d{4}-\d+)\s?\}
I find only one match. In another try I find one or two but not more:
\t\{(ABC-\d{4}-\d+)\s?(ABC-\d{4}-\d+)*\}
But I want to get 1 or n matches.
How can I achieve this?