双精度字符串格式

发布于 2024-09-18 09:57:10 字数 90 浏览 5 评论 0原文

我有一个 Double 值 xx.yyy,如果该值为负数,我想转换为字符串“xxyyy”或“-xxyy”。

我怎样才能做到呢?

问候。

I have a Double value xx.yyy and I want to convert to string "xxyyy" or "-xxyy", if the value is negative.

How could I do it?

Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酉 2024-09-25 09:57:10
double yourDouble = 61.9155;
String str = String.valueOf(yourDouble).replace(".", "");

说明:

OP有一些额外的条件(但我不太清楚其中一个):

  • 负数 ->只有两位小数。

    public static String doubleToSpecialString(double d)
    {
        如果 (d >= 0)
        {
             return String.valueOf(d).replace(".", "");
        } 别的
        {
             return String.format("%.2f", d).replace(",", "");
        }
    }
    
  • 负数->少一位小数

    public static String doubleToSpecialString(double d)
    {
        如果 (d >= 0)
        {
             return String.valueOf(d).replace(".", "");
        } 别的
        {
             String str = String.valueOf(d);
             int dotIndex = str.indexOf(".");
             int 小数 = str.length() - dotIndex - 1;
             return String.format("%." + (小数 - 1) + "f", d).replace(",", "");
        }
    }
    
double yourDouble = 61.9155;
String str = String.valueOf(yourDouble).replace(".", "");

Explanation:

Update:

The OP had some extra conditions (but I don't know exactly with one):

  • negative number -> only two decimals.

    public static String doubleToSpecialString(double d)
    {
        if (d >= 0)
        {
             return String.valueOf(d).replace(".", "");
        } else
        {
             return String.format("%.2f", d).replace(",", "");
        }
    }
    
  • negative number -> one decimal less

    public static String doubleToSpecialString(double d)
    {
        if (d >= 0)
        {
             return String.valueOf(d).replace(".", "");
        } else
        {
             String str = String.valueOf(d);
             int dotIndex = str.indexOf(".");
             int decimals = str.length() - dotIndex - 1;
             return String.format("%." + (decimals - 1) + "f", d).replace(",", "");
        }
    }
    
如日中天 2024-09-25 09:57:10

这个答案使用十进制格式化程序。它假定输入数字始终严格采用 (-)xx.yyy 形式。

/**
 * Converts a double of the form xx.yyy to xxyyy and -xx.yyy to -xxyy. 
 * No rounding is performed.
 * 
 * @param number The double to format
 * @return The formatted number string
 */
public static String format(double number){
    DecimalFormat formatter = new DecimalFormat("#");
    formatter.setRoundingMode(RoundingMode.DOWN);
    number *= number < 0.0 ? 100 : 1000;
    String result = formatter.format(number);
    return result;
}

This answer uses a Decimal Formatter. It assumes that the input number is always strictly of the form (-)xx.yyy.

/**
 * Converts a double of the form xx.yyy to xxyyy and -xx.yyy to -xxyy. 
 * No rounding is performed.
 * 
 * @param number The double to format
 * @return The formatted number string
 */
public static String format(double number){
    DecimalFormat formatter = new DecimalFormat("#");
    formatter.setRoundingMode(RoundingMode.DOWN);
    number *= number < 0.0 ? 100 : 1000;
    String result = formatter.format(number);
    return result;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文