Hi all,
I want to extract text start at last space (" ") and working to the right in a text string. i.e. strip off everything from the last space in the text string. Since there can be multiple spaces in the text string I was working on finding the last space and working to the right. Sample of the text are:

@Risk 5
504 Administrator
731_SGL-JWalk Client 3_3-2KXP_Ins
7500FastSystem_1.4.0.25(1)Eng
8200AnalysisSW_4.0(1)Eng
AB Commander Business License 7.1***************************
ABS 5.0

would yield:
@Risk
504
731_SGL-JWalk Client 3_3-2KXP_Ins
7500FastSystem_1.4.0.25(1)Eng
8200AnalysisSW_4.0(1)Eng
AB Commander Business License
ABS

If there is no space in the string I ignore it.

Thanks