Or, using regular expressions:
Code:
SQL> with test as
2 (select 'ABC*9497' col from dual union
3 select 'ABCD*234' from dual
4 )
5 select col, regexp_substr(col, '\d+$') numbers_only
6 from test;
COL NUMBERS_ONLY
-------- --------------------------------
ABC*9497 9497
ABCD*234 234
SQL>