Skip to content

Instantly share code, notes, and snippets.

@tesmen
Created November 23, 2015 13:21
Show Gist options
  • Save tesmen/8c3fe8713d4ba029786b to your computer and use it in GitHub Desktop.
Save tesmen/8c3fe8713d4ba029786b to your computer and use it in GitHub Desktop.
function triple(nStr) { // деление на разряды пробелами 132456789 -> 123 456 789
nStr += '';
var x = nStr.split('.');
var x1 = x[0];
var x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ' ' + '$2');
}
return x1 + x2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment