I have a CSV file, for example data may come in ;0; or ;.2; or ;.23456; the output string (to a file) must in this case be 6 bytes with an Implicit decimal, so 0 would of course be 000000, .2 would be 020000, .23456 would be 023456. and 1 would be 100000. There is no guarantee of a decimal, ie: 0 or 1, versus .23456 or 1.23456)
I was trying things like 01.5d, but the decimal or lack thereof in the input field trips me up. I've spent some time reading and looking at coding examples but haven't found anything that addresses this. I'm sure there is a simple but elequoent example some of the experts out there could educate me, or point me to a manual that would guide me.
Thanks.