Project

General

Profile

ActionsLike0

Feature #16011

closed

Digit grouping

Added by svnpenn (Steven Penny) over 5 years ago. Updated over 5 years ago.

Status:
Rejected
Target version:
-
[ruby-core:93839]

Description

Ruby seems to have no way to format a number with grouped thousands. I see Rails
has an option:

require 'active_support/all'
1234.to_s(:delimited)

However in this case it seems that grouping cannot be combined with say, leading
zeros:

https://github.com/rails/rails/issues/36707

This is quite simple with other languages, for example JavaScript:

(1234).toLocaleString(0, {minimumIntegerDigits: 7});
"0,001,234"

Python:

>>> format(1234, '08,')
'0,001,234'

Go:

package main
import "golang.org/x/text/language"
import "golang.org/x/text/message"
func main() {
   message.NewPrinter(language.English).Printf("%07d\n", 1234)
   // 0,001,234
}

Related issues 2 (1 open1 closed)

Related to Ruby - Feature #12447: Integer#digits for extracting digits of place-value notation in any baseClosedmatz (Yukihiro Matsumoto)Actions
Related to Ruby - Feature #18410: Proposal to make inspect include underscores on numericsOpenActions
#1

Updated by znz (Kazuhiro NISHIYAMA) over 5 years ago

  • Tracker changed from Bug to Feature
  • Backport deleted (2.5: UNKNOWN, 2.6: UNKNOWN)
#3

Updated by shyouhei (Shyouhei Urabe) over 5 years ago

  • Related to Feature #12447: Integer#digits for extracting digits of place-value notation in any base added

Updated by ko1 (Koichi Sasada) over 5 years ago

  • Status changed from Open to Assigned
  • Assignee set to matz (Yukihiro Matsumoto)

Updated by matz (Yukihiro Matsumoto) over 5 years ago

  • Status changed from Assigned to Rejected
#12

Updated by mame (Yusuke Endoh) over 3 years ago

  • Related to Feature #18410: Proposal to make inspect include underscores on numerics added
ActionsLike0

Also available in: Atom PDF