Skip to content
Advertisement

Replace characters with padding zeros

I have a table with values:

and I need to replace the first dash (-) with zeros, so that the total length is exactly 18 characters, and insert it back into the database:

If that is not possible, then maybe do the same using grep

Advertisement

Answer

I need to replace the first dash (-) with zeros, so that the total length is exactly 18

You can deconstruct the string and then put it back together:

Note that this returns the results that you describe, not the results given in the question — I assume you have a typo there.

Here is a db<>fiddle

This is easily incorporated into an update:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement