I have a string custom parameter like XXXXX-YYY where the XXXXX is always 5-digits, leading digits are 0 if not used and YYY are characters. I would like to strip off any leading 0s.
The easiest way that comes to mind when I think of it that way may be to just do int(left()) for the first 5, let Ignition do the stripping, and then concat with the remaining string using right() and len()-5