gpt4 book ai didi

javascript - 将数学应用于字符串中的所有数字?

转载 作者:行者123 更新时间:2023-12-03 16:32:05 26 4
gpt4 key购买 nike

我正在尝试制作一个 cooking 食谱计算器,它基本上可以获取所有数字并将它们相除(到目前为止)。除了除所有数字外,它还会将小数化为分数。这个很重要。现在,当我运行我的循环来寻找要替换的数字时,当行上的数字大于 1 时我会遇到问题。如果我输入 1 egg and 2 cups of milk 并告诉它除以2、它会这样做:

first iteration:
find: 1 and replace 1 with 1/2
result: 1/2 egg and 2 cups of milk

second iteration:
find: 2 and replace 2 with 1
result: 1/1 egg and 2 cups of milk

如果您理解正确,我现在有 1/1 2。为什么?因为在第二次迭代时,它会找到 2 并将其替换为 1。我基本上需要说:

if(number != fraction)
replace number;

我怎样才能从我的代码中做到这一点?

JSFiddle:http://jsfiddle.net/fgzt82yk/8/
我的循环:

for(i = 0; i < content.length; i++) {
//Finds numbers on the line
var number = content[i].match(regex);

//number == null if the line is empty
if(number != null) {

//There can be more than 1 number on each line, create a new loop
for(j = 0; j < number.length; j++) {

//Turns fractions into decimals
var evalNumber = eval(number[j]);

//Divides the number
var divided = parseFloat(evalNumber / selection);

//We need some kind of precision, so we won't get 0.1666667 and so on
var precision = selection;
if(precision == 2) {
precision = 0;
}

//Turns our decimal into a fraction (or a whole-number)
var newNum = Math.fraction(divided.toString(), precision);

//Replaces the original number from the content[i] (whole line) with the new number/fraction
content[i] = content[i].replace(number[j], newNum);
}
}
}

添加了注释,使每一行的含义更加清晰。这是让我烦恼的最后一行..我敢肯定。

我基本上是在寻找一种更好的方法来将数学应用于所有数字(小数、分数、带分数等)。到目前为止它还算有效,但我相信有人有更好的方法来做到这一点!感谢您的关注!

最佳答案

对于您的用例,我认为解决方案不是找出如何不除已除的数字,而是一次替换所有数字。

例如,如果您的食谱要求:

  • 12个鸡蛋
  • 6 杯水
  • ...

如果您想减半,您最终可以将 12 替换为 6,然后在该遍中再次替换 6。 (是的,您可能可以从最大到最小的数字进行计算,但是您还需要一个通行证来对所有数字进行排序。不必要的复杂性)。

如果你无论如何都要使用正则表达式,我建议你做类似的事情

function fractionize(n, d) {
var gcd = (function gcd(a, b) {
if ( ! b) {
return a;
}
return gcd(b, a % b);
})(n ,d);
return d == gcd ? n / d : (n > d ? Math.floor(n / d) + ' ': '') + (n % d / gcd) + '/' + (d / gcd);
}

function decimalize(decimal, precision) {
var power = Math.pow(10, precision);
return Math.round(decimal * power) / power;
}

function scaleRecipe(recipe, multiply, divide) {
return recipe.replace(/((\d*\.\d+)|((\d+)\s+)?(\d+)(\s*\/\s*(\d+))?)/g, function(_, _, decimal, _, wn, n, _, d) {
d = d || 1;
return decimal ? decimalize(decimal * multiply / divide, decimal.match(/\d/g).length) : fractionize(((wn || 0) * d + parseInt(n)) * multiply, divide * d);
});
}

例如:

scaleRecipe('12 eggs, 6 cups of water, 13 chickens, 4 lb rice, 17 tsp vanilla, 60g sugar, 3/4 cups chocolate chips, 2/3 lb beef, 1/5 oz secret sauce, 3 1 / 2 teaspoons salt', 1, 6)

给你

"2 eggs, 1 cups of water, 2 1/6 chickens, 2/3 lb rice, 2 5/6 tsp vanilla, 10g sugar, 1/8 cups chocolate chips, 1/9 lb beef, 1/30 oz secret sauce, 7/12 teaspoons salt, 0.1 lb ham, 0.027 oz honey, 0.35 pint blueberries"

同样的食谱 /8 会给你

"1 1/2 eggs, 3/4 cups of water, 1 5/8 chickens, 1/2 lb rice, 2 1/8 tsp vanilla, 7 1/2g sugar, 3/32 cups chocolate chips, 1/12 lb beef, 1/40 oz secret sauce, 7/16 teaspoons salt, 0.1 lb ham, 0.02 oz honey, 0.26 pint blueberries"

您还可以使用额外的逻辑来减少分数(请参阅:JS how to find the greatest common divisor)并格式化为带分数(分别取整数和余数部分)。

复数可能是您要考虑的另一个方面,但英语是一种棘手的语言,有很多边缘情况。 :)

关于javascript - 将数学应用于字符串中的所有数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33401616/

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