I'm trying to use regexp_replace replace every occurrence of type (number) (brackets with a number inside) with the expression ('number') (add ' before and after the number and by that - transform the number into varchar).
Example -
Before change: abcde(737)sbsgs37(6)s(v)
After change : abcde('737')sbsgs37('6')s(v)
Thanks,
Ilya Golosovsky.
VARCHAR2containing alphabetical characters, punctuation and numbers - how will wrapping the numbers in quotes within aVARCHAR2type magically change parts of the string to aNUMBERtype such that wrapping them in quotes will make any difference?