我需要从字符串的末尾删除零,但是从小数点右边最多只能删除2个位置。
我将格式化的价格作为字符串移交,并且该价格最多为小数点后5位。我需要从价格中删除不必要的零,但在小数点右边留下至少2。例如:
£0.00230 - > £0.0023 和 £1.50000 - > £1.50
任何帮助将不胜感激!
答案 0 :(得分:1)
最后和最后一次更新有希望...修剪右边的所有零,然后在需要时添加1或2个零。
function format_number($price) {
if (preg_match('~^£\d+$~', $price)) {
$price .= '.00';
} else {
$price = rtrim($price, '0');
if (preg_match('~\.$~', $price)) {
$price .= '00';
} elseif (preg_match('~\.\d$~', $price)) {
$price .= '0';
}
}
return $price;
}
echo format_number('£230') . "\n";
echo format_number('£230.12') . "\n";
echo format_number('£23.024') . "\n";
echo format_number('£230.00024') . "\n";
echo format_number('£230.0240') . "\n";
echo format_number('£230.2') . "\n";
输出:
£230.00
£230.12
£23.024
£230.00024
£230.024
£230.20
答案 1 :(得分:0)
试试这段代码:
$value = "0.00230";
$new_value = explode(".", $value);
$substring = substr($new_value[1], 0, 1);
if($substring == "00"){
$value = number_format($value, 4, '.', '');
} else {
$value = number_format($value, 2, '.', '');
}
echo $value;
答案 2 :(得分:0)
您可以移除符号,强制转换为浮动以删除尾随零,并在需要时使用return Parse.Cloud.httpRequest(encodeURIComponent(JSON.stringify(params)));
将其添加回来:
number_format