Hi, you could use something which looks likes:
DATA lv_char30 TYPE char30.
DATA lt_splitted TYPE char30.
SPLIT AT lv_char30 INTO TABLE lt_splitted AT space.
Now you have all words in a separate entry in lt_splitted. From here you can create logic to check the length of the word and start concatenating it into two separate fields.
Good luck!
Sander