Can you describe what text you want to return? In other words, "match not 'Status' at the start of the string, and if found return the alphabetic characters after the word 'Status'".
Are there always a set of numbers between the word status and the text you want? Are there always numbers (date?) after? What if any of these components are missing? Always expect the unexpected!
Without knowing your rules, here's a first stab at it.
Match a string that starts with the word 'Status' (anchored to the front of the string), followed by a space and one or more numbers and another space. Capture everything encountered until a space and the rest of the string (anchored to the end of the line). Returned the first captured group (surrounded by parenthesis). Note if a match is not found NULL is returned.
{REGEX(MatchGetGroup|Status 35412 Mike Allan John 3-12-2018|^Status \d+ (.*) .*$|1)}
Edited by user
2018-04-26T16:04:48Z
|
Reason: Not specified