Filtering a string

Hi,
I have a string in a named clipboard (set to for instance 7294 USD) i want to filter into two variables named Amount and Currency. Which function can i use to extract letters (USD) and numbers (7294) only?

Use the KM Search using Regular Expression action.

RegEx:
(\d+)\h+(\p{L}+)

BTW, there is no advantage to using a KM Named Clipboard for plain text data.
Use a Global Variable instead.