Regex- How to extract text using regex that is behind the text with brackets?

Hello,
How to extract text using regex that is behind the text with brackets?
Example below, the elements I would like to extract are marked in gray
These can be various types of words, strings of characters, etc.


according to your Sample, bu relying on Enter

UPD1 - added : within the pattern

UPD2 - added: When the lastone has not the Enter Mark as it is at the end we can do:

Hello @ppr
What if I want it to always extract data only after Enter Project Administrator (generic account or group):. Sometimes the text may also include Enter Project Lead (generic account or group): and I would not like it to include what comes after it.
See the example below

When working with regex, then we highly recommend to have a clear definition of

  • what is exact needed
  • what are the variations

Maybe the follwoing strategy will work. Extract more, but only Project Admins:

The postprocess the result and fetch the part of interest

Hi @damian.g

The below regex should help you

(?<=\)\:).*?(?=Enter|$)

Hope it helps!!