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

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -