It seems that you always want word 4 and 5 of the text.
If that is the case, you can use the following code to extract word 4:
=MID(MID(MID(SUBSTITUTE(A1," ","^",3),1,256),FIND("^",SUBSTITUTE(A1," ","^",3)),256),2,FIND(" ",MID(MID(SUBSTITUTE(A1," ","^",3),1,256),FIND("^",SUBSTITUTE(A1," ","^",3)),256))-2)
And for word 5:
=MID(MID(MID(SUBSTITUTE(A1," ","^",4),1,256),FIND("^",SUBSTITUTE(A1," ","^",4)),256),2,FIND(" ",MID(MID(SUBSTITUTE(A1," ","^",4),1,256),FIND("^",SUBSTITUTE(A1," ","^",4)),256))-2)
If you concatenate both, you should have what you want in a single (massive) formula.
Bookmarks