For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hello all,
I have to remove alpha characters in my data
for example
305N -->305
I want to remove using regexp_replace function
select regexp_REPLACE('305N','[:alpha:]','') NUM from Dual;
Please suggest me.
Thanks in advance.