What are the other results you are looking for? I'm going to take a wild guess that maybe this is something to do with sports results; that you have a team name and a number (of points or something), then another team name and another number, and I guess the thing in parentheses is that "status" you're referring to.
So I'm going use the terms "team name" and "points value", whatever they may actually be for your purpose.
Assuming that team names can't contain digits, then the first "team name" would be everything up to but not including the first points value (less things like extra whitespace). Then comes the first points value, which are all the consecutive digits up to the next non-digit. Then there's the second team name which continues up to the next digit, then the second points value, then the (parenthesised) status.
So, assuming all the assumptions I've had to make are correct, the regular expression would match "non-digits followed by whitespace followed by digits followed by whitespace followed by non-digits followed by whitespace followed by digits followed by whitespace, an open parenthesis, non-closing-parentheses, and a final closing parenthesis".