Smalltalk(Pharo) である桁ごとにコンマ区切りにする
ふと思い立ってある桁(以下の場合は3桁)ごとにコンマ区切りにするコードを書いてみました。
もっとスマートにやるというか、そのものズバリの何かがあるような気がするのですが…。
(追記)コメントにある通り Integer >> printSeparatedBy: every: signed: base: on:
がそのものズバリのようです。やっぱり、ありそうなものはあるものですね。
|n stream|
n := 1.
stream := WriteStream with: ''.
1000000 asString reverse do: [:s | stream << s.
(n = 3) ifTrue: [
stream << ','.
n := 1.
]
ifFalse: [
n := n + 1
].
].
Transcript show: stream contents reverse; cr.
Author And Source
この問題について(Smalltalk(Pharo) である桁ごとにコンマ区切りにする), 我々は、より多くの情報をここで見つけました https://qiita.com/YuichiSato/items/7584e64fcb164dbea0f4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .