LocalString method for German currency?

var n = (1223578.00).toLocaleString('de-DE');

      

Should be -> "1.223.578,00" but output: 1.223.578 (no decimal places)

What's wrong?

<script type="text/javascript">var amount= '{{currency1}}';</script>

      

this is a completed form from SQL, currency1 = 1223578.00

How can I use this, with these placeholders?

+3


source to share


1 answer


Set the minimumFractionDigits property to the desired number of digits.

var n = (1223578.00).toLocaleString('de-DE',{ minimumFractionDigits: 2 });

      

Produces: 1.223.578,00

The above function may not work in all browsers. To ensure the same result in all browsers, you can manually create a line like this:

Modified From: fooobar.com/questions/56446 / ...



function DelocaleString(x, sep, grp, dec) {
  //add decimals
  var y = x.toFixed(dec);
  //strip decimals
  var x_integer = y.split('.')[0];
  var x_fraction = y.split('.')[1];
  var x_fractionString = "";
  if (dec > 0) {
    x_fractionString = ',' + x_fraction;
  }
  var sx = ('' + x_integer).split('.'),
    s = '',
    i, j;
  sep || (sep = ' '); // default seperator
  grp || grp === 0 || (grp = 3); // default grouping
  i = sx[0].length;
  while (i > grp) {
    j = i - grp;
    s = sep + sx[0].slice(j, i) + s;
    i = j;
  }
  s = sx[0].slice(0, i) + s;
  sx[0] = s;
  return sx.join('.') + x_fractionString
}

      

Example

$().ready(function() {
  $('#convertBtn').click(function() {
    ConvertNumber();
  });
});

function ConvertNumber() {
  var input = $('#in').val();
  if ($.isNumeric(input)) {
    $('#out').val(DelocaleString(+input, '.', 3, 2));
  } else {
    $('#out').val('Input is not a number!');
  }
}

function DelocaleString(x, sep, grp, dec) {
  //add decimals
  var y = x.toFixed(dec);
  //strip decimals
  var x_integer = y.split('.')[0];
  var x_fraction = y.split('.')[1];
  var x_fractionString = "";
  if (dec > 0) {
    x_fractionString = ',' + x_fraction;
  }
  var sx = ('' + x_integer).split('.'),
    s = '',
    i, j;
  sep || (sep = ' '); // default seperator
  grp || grp === 0 || (grp = 3); // default grouping
  i = sx[0].length;
  while (i > grp) {
    j = i - grp;
    s = sep + sx[0].slice(j, i) + s;
    i = j;
  }
  s = sx[0].slice(0, i) + s;
  sx[0] = s;
  return sx.join('.') + x_fractionString
}
      

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

<form class="form-horizontal" style="max-width:350px;">
  <div class="form-group">
    <label for="in" class="col-sm-2 control-label">Input</label>
    <div class="col-sm-10">
      <input type="text" class="form-control" id="in" placeholder="Allowable formats: 123.456789, 123456789">
    </div>
  </div>
  <div class="form-group">
    <label for="out" class="col-sm-2 control-label">Output</label>
    <div class="col-sm-10">
      <input type="text" class="form-control" id="out" placeholder="Formatted Number" readonly>
    </div>
  </div>
  <div class="form-group">
    <div class="col-sm-offset-2 col-sm-10">
      <button class="btn btn-default" id="convertBtn">Convert Number</button>
    </div>
  </div>
</form>
      

Run codeHide result


+5


source







All Articles