I have a string " abc2 ab33".
I want delete all characters and keep numbers but output is a array. It's "2 33".
First I delete all the whitespcace but that's the reason I can't split that string to "abc2 ab33" because it will become "abc2ab33" after I delete all whitespace.