I have this type of strings
01/CBA/1234567890
02/ABC/0000969755
06/DEF/0000000756
I want to remove the zeroes and get following output
01/CBA/1234567890
02/ABC/969755
06/DEF/756
How can i do that ? I though about combination of RIGHT, LEFT, CHARINDEX, SUBSTRING functions but have no idea how to combine them.
Any idea ?