> On 8 Nov 2017, at 11:45 am, Monte Goulding via use-livecode > <[email protected]> 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 [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
