I have some string values that vary in length and i want to delete the leading zero's that are part of the string. However i do not want to delete all the zero's in the string as a zero may be part of the string i need.
Example 1 string 0000345060
Example 2 string 00789
In example 1 i want to return 345060 and in example 2 i would want to return 789. Is there an easy way i can do this?
0
Comments
Hope this helps
Thomas
This will delete all occurences, not just the leading ones
use this
Albert
That should work. Using DELCHR without the '<' would delete all zeros