Page 1 of 1

Comma Seperator

Posted: Sun May 07, 2017 3:51 pm
by saviour
Hi there,

I searched the forum on the topic but could nt find the right one. How to enter number in a field which automatically inputs the number with comma in thousand separator format like 123,456,789 format??

Thanks :)

Re: Comma Seperator

Posted: Sun May 07, 2017 8:55 pm
by jmburnod
Hi,
not sure that is the best way but quickly :

Code: Select all

...
   put "123456789" into t
   put empty into t2
   repeat until t = empty
      put char -3 to -1 of t & cr before t2
      delete char -3 to -1 of t
   end repeat
   delete char -1 of t2
   replace cr with "," in t2
   put t2
...
Best regards
Jean-Marc

Re: Comma Seperator

Posted: Sun May 07, 2017 10:18 pm
by SparkOut
Therr are some threads that discuss the possible approaches, such as http://forums.livecode.com/phpBB2/viewt ... 696#p12696