gpt4 book ai didi

javascript - 解决以下问题的正则表达式是什么?

转载 作者:行者123 更新时间:2023-12-02 22:34:33 25 4
gpt4 key购买 nike

输出以下结果的正则表达式是什么:-

d = 1000 / 280;
console.log(d);

输出:

3.5714285714285716

但我只想输出前 3 位数字,包括点。 (或者可以用点表示 4 个字符)示例:-

3.57

更新:可以使用Math.floor来解决这个问题例如

d = 1000 / 280;
d = Math.floor(d * 100) / 100;

但我实际上正在寻找基于正则表达式的解决方案。

最佳答案

为什么需要正则表达式?

只需使用Math.floor:

d = 1000 / 280;
d = Math.floor(d * 100) / 100; // Precision: 2 digits
console.log(d);
<小时/>

如果您仍然想使用正则表达式来完成此操作,这就是您正在寻找的内容(这适用于任何数字,包括负数):

d = 1000 / 280;
d = d.toString().replace(/^(-?\d+\.\d{2}).*/, '$1');
console.log(d);

关于javascript - 解决以下问题的正则表达式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58781000/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com