简体   繁体   English

jq中如何让tonumber输出小数而不是科学计数法

[英]In jq, how to get tonumber to output decimal instead of scientific notation

In a JSON object, given the string "0.0000086900" as the value of a key-value pair, if I do |tonumber on this, 8.69e-06 gets returned.在 JSON 对象中,给定字符串"0.0000086900"作为键值对的值,如果我对此执行|tonumber ,将返回8.69e-06

How can I ensure that only decimals are ever returned?如何确保只返回小数? In the case above, this would be 0.0000086900在上面的例子中,这将是0.0000086900

SOLUTION (based on Peak's code snippet below)解决方案(基于下面 Peak 的代码片段)

def to_decimal:
  def rpad(n): if (n > length) then . + ((n - length) * "0") else . end;
  def lpad(n): if (n > length) then ((n - length) * "0") + . else . end;

tostring
  | . as $s
  | [match( "(?<sgn>[+-]?)(?<left>[0-9]*)(?<p>\\.?)(?<right>[0-9]*)(?<e>[Ee]?)(?<exp>[+-]?[0-9]+)" )
      .captures[].string] as [$sgn, $left, $p, $right, $e, $exp]
  | if $e == "" then .
    else ($exp|tonumber) as $exp
    | ($left|length) as $len
    | if $exp < 0 then "0." + ($left | lpad(1 - $exp - $len)) + $right
      else ($left | rpad($exp - $len)) + "." + $right
      end
      | $sgn + .
    end;

Unfortunately there is currently no way in jq to modify the representation of JSON numbers as such;不幸的是,目前在 jq 中没有办法修改 JSON 数字的表示形式; the best one can do is modify their representation as strings.最好的办法是将它们的表示形式修改为字符串。 Here is a simple illustration of what can be done.这是可以做什么的简单说明。

to_decimal takes as input a JSON number (or a valid JSON string representation of a number, possibly with a leading "+") as input, and converts it into a suitable string, eg: to_decimal将 JSON 数字(或数字的有效 JSON 字符串表示形式,可能带有前导“+”)作为输入,并将其转换为合适的字符串,例如:

["0","1","-1","123","-123",".00000123","1230000","-.00000123","-0.123","0.123","0.001"]

produces:产生:

[0,"0"]
["+1","1"]
[-1,"-1"]
[123,"123"]
[-123,"-123"]
[1.23e-06,".00000123"]
[1230000,"1230000"]
[-1.23e-06,"-.00000123"]
[-0.123,"-0.123"]
[0.123,"0.123"]
[0.001,"0.001"]

Notice that any leading "+" is dropped.请注意,任何前导的“+”都被删除了。

to_decimal to_decimal

def to_decimal:
  def rpad(n): if (n > length) then . + ((n - length) * "0") else . end;
  def lpad(n): if (n > length) then ((n - length) * "0") + . else . end;

  tostring
  | . as $s
  | capture( "(?<sgn>[+-]?)(?<left>[0-9]*)(?<p>\\.?)(?<right>[0-9]*)(?<e>[Ee]?)(?<exp>[+-]?[0-9]+)" )
  | if .e == "" then (if .sgn == "+" then $s[1:] else $s end)
    else (.left|length) as $len
    | (.exp|tonumber) as $exp
    | (if .sgn == "-" then "-" else "" end ) as $sgn
    | if $exp < 0 then "." + (.left | lpad(1 - $exp - $len)) + .right
      else (.left | rpad($exp - $len)) + "." + .right
      end
      | $sgn + .
    end ;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM