I have text strings like the following:
g06, f03, k090
And I would like to remove all zeros that immediately follow a letter. So the output would be:
g6, f3, k90
I can do something like:
select regexp_replace('k090','0','')
But this will replace all 0’s and not just the one immediately following a letter.