4

我需要用 0 填充整数部分,整数部分必须至少为 2 个字符

str_pad( 2    ,2,"0",STR_PAD_LEFT);// 02 -> works
str_pad( 22   ,2,"0",STR_PAD_LEFT);// 22 -> works
str_pad( 222  ,2,"0",STR_PAD_LEFT);// 222-> works
str_pad( 2.   ,2,"0",STR_PAD_LEFT);// 2. -> fails -> 02. or 02
str_pad( 2.11 ,2,"0",STR_PAD_LEFT);// 2.11-> fails -> 02.11

有简单的代码吗?

如果可能的话,请在 Java 中相同

double x=2.11;
String.format("%02d%s", (int) x, String.valueOf(x-(int) x).substring(1))

不仅丑而且打印 02.10999999999999988

编辑Java:Java 整数部分填充

4

5 回答 5

3

不,没有简单的方法。

function padIntegerPart($n, $len) {
    $intPart = (int)$n;

    return str_repeat('0', max(0, $len - 1 - floor(log($intPart, 10)))) . $n;
}
于 2012-07-08T13:51:08.710 回答
3

您还可以使用printf()函数来填充整数:

类似(键盘):

<?php

function pad($n) {
    $n = explode('.', (string)$n);

    if (2 === count($n)) {
        return sprintf("%02d.%d\n", $n[0], $n[1]);    
    }

    return sprintf("%02d\n", $n[0]);    
}

foreach (array(2, 22, 222, 2., 2.11) as $num) {
    echo pad($num);
}

// returns 02, 22, 222, 02, 02.11
于 2012-07-08T14:00:53.847 回答
1

快速解决方案:http ://codepad.org/EXcbqGos

$num = 2.11;
echo str_pad( floor($num) ,2,"0",STR_PAD_LEFT).substr($num-floor($num), 1);

它仅适用于非负数。

于 2012-07-08T13:49:00.283 回答
0

如果您要查找的输出是02.11,请尝试sprintf()

sprintf("%05.2f", 02.11); // Output: 02.11
           ^ ^--- float precision
           |--- total string length

sprintf("%07.2f", 02.11); // Output: 0002.11

可能有帮助的链接是:

http://us2.php.net/sprintf

使用printf打印浮点数时有额外的前导零?

于 2012-07-08T14:03:05.737 回答
0

另一个 :

function my_str_pad ($input ,$pad_length, $pad_string) {
    $pad_length += strlen($input) - strlen(intval($input));

    return str_pad($input, $pad_length, $pad_string, STR_PAD_LEFT);
}

以下测试:

str_pad(2., 2, "0", STR_PAD_LEFT);// 2. -> fails -> 02. or 02

失败,因为 str_pad 正在处理字符串,但是您输入了一个带小数但没有小数部分的数字,因此它被视为整数。如果你想保留'.' 改用以下内容:

str_pad("2.", 2, "0" , STR_PAD_LEFT);// 2. -> works
于 2012-07-08T14:08:46.123 回答