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

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -