From d1e63903f74f430cbd717ec23845e6ef5b3a538f Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Thu, 11 Apr 2019 06:56:51 +0200 Subject: [PATCH] new StringUtils: formatNumber --- src/be/nikiroo/utils/StringUtils.java | 52 +++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/src/be/nikiroo/utils/StringUtils.java b/src/be/nikiroo/utils/StringUtils.java index ef3d84b..9945229 100644 --- a/src/be/nikiroo/utils/StringUtils.java +++ b/src/be/nikiroo/utils/StringUtils.java @@ -795,6 +795,58 @@ public class StringUtils { return new String(unbase64(data, offset, count, zip), "UTF-8"); } + /** + * Return a display {@link String} for the given value, which can be + * suffixed with "k" or "M" depending upon the number, if it is big enough. + *

+ * Example: + *

+ * + * @param value + * the value to convert + * + * @return the display value + */ + public static String formatNumber(long value) { + return formatNumber(value, true); + } + + /** + * Return a display {@link String} for the given value, which can be + * suffixed with "k" or "M" depending upon the number, if it is big enough. + *

+ * Example: + *

+ * + * @param value + * the value to convert + * @param strict + * TRUE if you want any value equals or greater than 1000 to use + * the "k" suffix; FALSE if you want to go a bit higher and only + * use "k" for values equal or greater than 4000 + * + * @return the display value + */ + public static String formatNumber(long value, boolean strict) { + if (value >= 1000000l) { + return Long.toString(value / 1000000l) + "M"; + } + + if ((strict && value >= 1000l) || (!strict && value >= 4000l)) { + return Long.toString(value / 1000l) + "k"; + } + + return Long.toString(value); + } + /** * The "remove accents" pattern. * -- 2.27.0