Javascript:如何检索 *string* 数字的小数位数?

Javascript: How to retrieve the number of decimals of a *string* number?(Javascript:如何检索 *string* 数字的小数位数?)
本文介绍了Javascript:如何检索 *string* 数字的小数位数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一组带小数的字符串数字,例如:23.4569.450123.01...我需要检索每个数字的小数位数,知道它们至少有 1 个小数.

换句话说,retr_dec() 方法应该返回以下内容:

retr_dec("23.456") ->3retr_dec("9.450") ->3retr_dec("123.01") ->2

在这种情况下,尾随零确实算作小数,这与 相关问题.

是否有一种简单/交付的方法可以在 Javascript 中实现这一点,或者我应该计算小数点位置并计算与字符串长度的差异?谢谢

解决方案

function decimalPlaces(num) {var match = (''+num).match(/(?:.(d+))?(?:[eE]([+-]?d+))?$/);if (!match) { 返回 0;}返回数学.max(0,//小数点右边的位数.(匹配[1]?匹配[1].长度:0)//调整科学记数法.- (match[2] ? +match[2] : 0));}

额外的复杂性是处理科学记数法

<块引用>

decimalPlaces('.05')2小数位('.5')1小数位('1')0小数位('25e-100')100小数位('2.5e-99')100小数位('.5e1')0小数位('.25e1')1

I have a set of string numbers having decimals, for example: 23.456, 9.450, 123.01... I need to retrieve the number of decimals for each number, knowing that they have at least 1 decimal.

In other words, the retr_dec() method should return the following:

retr_dec("23.456") -> 3
retr_dec("9.450")  -> 3
retr_dec("123.01") -> 2

Trailing zeros do count as a decimal in this case, unlike in this related question.

Is there an easy/delivered method to achieve this in Javascript or should I compute the decimal point position and compute the difference with the string length? Thanks

解决方案

function decimalPlaces(num) {
  var match = (''+num).match(/(?:.(d+))?(?:[eE]([+-]?d+))?$/);
  if (!match) { return 0; }
  return Math.max(
       0,
       // Number of digits right of decimal point.
       (match[1] ? match[1].length : 0)
       // Adjust for scientific notation.
       - (match[2] ? +match[2] : 0));
}

The extra complexity is to handle scientific notation so

decimalPlaces('.05')
2
decimalPlaces('.5')
1
decimalPlaces('1')
0
decimalPlaces('25e-100')
100
decimalPlaces('2.5e-99')
100
decimalPlaces('.5e1')
0
decimalPlaces('.25e1')
1

这篇关于Javascript:如何检索 *string* 数字的小数位数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)