> On 8 Nov 2017, at 11:45 am, Monte Goulding via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> Something like:
> 
> put “3.33.007" into tValue
> set the itemDelimiter to "."
> put format("%s.%03d", item 1 to 2 of tValue, item 3 of tValue + 1) into 
> tNextValue

Actually probably simpler than that is:

put “3.33.007" into tValue
set the itemDelimiter to "."
put item 1 of tValue & “.” & item 2 to 3 of tValue + 0.001 into tNextValue
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to