Help with regex ideas

“deleted - the status was being deleted and got it back with it.”
Here the fixed is status and deleted, in-between them they can be several text, need to ignore those

Now my regex is
(?<=status).* - This takes all after status but I need to ignore from status to deleted and take rest of it.

Eg Input:
“deleted - the status was being deleted and got it back with it.”
Output:
"and got it back with it.

Hi,
In case when your status will be always “deleted” you can use (?<=deleted\s)(\w*\s*)*

@Sweety_Girl
have a look here:
grafik

refering to groups:

with the idea of defining the anchor keywords (deleted,status, deleted) in one group and the text of interest in another

Another possible solution:

(?<=status.*deleted ).*

image