Find number in string

Hello, I am breaking my head on how to find the number 46 and 220 as two separate numbers in a column from the following string:
"VB 46(D)x220m - some more text"

The text always starts with 'VB'
Between the numbers there is always an 'x'
The '(D)' is not always there, neither does the 'm -', and the text after it

Does anyone have a clue?

The regex \d+ seems to work. Notice the "All matches" mode in the action settings.

regex.morph (2.4 KB)

Thanks, this works great!