forked from Fascinated/Bat
17 lines
360 B
Java
17 lines
360 B
Java
|
package cc.fascinated.bat.common;
|
||
|
|
||
|
/**
|
||
|
* @author Fascinated (fascinated7)
|
||
|
*/
|
||
|
public class NumberUtils {
|
||
|
/**
|
||
|
* Formats a number with commas.
|
||
|
*
|
||
|
* @param number the number to format
|
||
|
* @return the formatted number
|
||
|
*/
|
||
|
public static String formatNumberCommas(double number) {
|
||
|
return String.format("%,.0f", number);
|
||
|
}
|
||
|
}
|