Re: [Bug-apl] format by example and comma

2014-07-08 Thread David Lamkins
Thank you. Confirmed fixed. On Sun, Jul 6, 2014 at 6:21 AM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi David, > > thanks, it is a bug. Fixed in SVN 361. > > /// Jürgen > > > > On 07/06/2014 05:48 AM, David B. Lamkins wrote: > >>'5,550.05' ⍕9 >> 9.0 >>'5,5

Re: [Bug-apl] format by example and comma

2014-07-06 Thread Juergen Sauermann
Hi David, thanks, it is a bug. Fixed in SVN 361. /// Jürgen On 07/06/2014 05:48 AM, David B. Lamkins wrote: '5,550.05' ⍕9 9.0 '5,550.05' ⍕99 99.0 '5,550.05' ⍕100 ,100.0 '5,550.05' ⍕999 ,999.0 '5,550.05' ⍕1000 1,000.0

[Bug-apl] format by example and comma

2014-07-05 Thread David B. Lamkins
I'm trying to use format by example to format a number with commas, and am confused by the behavior of the comma in the format spec. I'm using '5,550.05' as the spec. This works fine for numbers having an integer part up to 99, but from 100 up to 999 I get a spurious leading comma in the output.