I have a string and I need to insert a space after each number.
e.g. Ctn/10Btl/100ml
to be converted it to Ctn/10 Btl/100 ml
.
Can you help me how to query to insert space after number?
Any help is appreciated.
Thanks
I have a string and I need to insert a space after each number.
e.g. Ctn/10Btl/100ml
to be converted it to Ctn/10 Btl/100 ml
.
Can you help me how to query to insert space after number?
Any help is appreciated.
Thanks
You could use
REGEXP_REPLACE
with a capture group:Output:
Ctn/10 Btl/100 ml
Demo