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

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -