plsql - how to find number and remove it from varchar string in oracle sql -
i have following string
val = "testabc123xyz32dfghj"
i need below output caps character without number:
output : testabcxyzdfghj
which sql strings functions use?
technically want this:
select upper(regexp_replace('testabc123xyz32dfghj', '\d')) dual;
Comments
Post a Comment