Hello.... I need to extract all instances of words that have format xnnnnnn, where x is an alpha character (letter of alphabet, to be precise) and nnnnnn are numbers. The words could something like u435586. The problem is I do not know how many instances of these words are in the string. The entire string is contained in a cell. A sample string could be something like:

SMNT\v922970;#1283;#SMNT\t433925;#1284;#SQRS\t003417;#1285;#SQRS\p047683;#1286;#SMNT\t6132451;#1287;#SQRS\w3145627;#1288

and the end result should be

v922970 t433925 t003417 p047683 t6132451 w3145627

The words are preceded by the character "\" which might facilitate the search. Thank you in advance for your help. Regards, Piero