2
Completed

Numberize Numbers

Feature to insert comma's (or delimiter of choice) into long numbers so 10000000 can be changed to 10,000,000

Just gotta make sure to keep them only to the left of the decimal. So 10543.3456 only becomes 10,543.3456 and not 10,543.3,456

EDIT: Maybe could call it "Commatize" (lol) and put it right next to "Monatize".

2 replies

I think a more inclusive and broader approach would be to use formatters.

Check here: https://docs.oracle.com/javase/tutorial/i18n/format/decimalFormat.html

That would work, right? :)

Yeah! That'd be perfect actually :)

Ok, here you go: https://dl.dropboxusercontent.com/u/9787157/apk/AutoTools.apk

Awesome! Tested and works great :)

Should include a link to the format page at Oracle in the plugin somewhere, or - copy that format example table to your website, etc. so people can see the various formats.