如何分组显示长数字?

发布于 2024-10-04 19:42:29 字数 224 浏览 1 评论 0原文

我有一个字符串,

string = '1234432198766789'

我希望它看起来像这样:

"1234 4321 9876 6789"

最好的方法是什么?我能够使用 Rails 的字符串扩展。

我不想修改原始字符串,因此无法使用 insert 方法。

I have a string

string = '1234432198766789'

I want it to look like this:

"1234 4321 9876 6789"

What is the best way to do it? I am able to use Rails' String extensions.

I don't want to modify the original string, so insert method couldn't be used.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

染柒℉ 2024-10-11 19:42:29
p '12345678'.reverse.scan(/.{1,4}/).join(' ').reverse
# => "1234 5678"

为什么要双重反转?这样,当字符串的长度不是四的倍数时,奇数大小的组将位于左侧:

p '123456'.reverse.scan(/.{1,4}/).join(' ').reverse
# => "12 3456"

如果您知道字符串始终是四的倍数,或者如果您不介意奇数大小的组是右侧,然后省略对 reverse 的两个调用。

p '123456'.scan(/.{1,4}/).join(' ')
# => "1234 56"
p '12345678'.reverse.scan(/.{1,4}/).join(' ').reverse
# => "1234 5678"

Why the double reverse? So that when the string's length is not a multiple of four, the odd-sized group will be on the left:

p '123456'.reverse.scan(/.{1,4}/).join(' ').reverse
# => "12 3456"

If you know your string will always be a multiple of four, or if you don't mind the odd-sized group being on the right, then leave out the two calls to reverse.

p '123456'.scan(/.{1,4}/).join(' ')
# => "1234 56"
千秋岁 2024-10-11 19:42:29

长版:

string.split("").in_groups_of(4).map { |s| s.join("") }.join(" ")

这应该是某种电话号码吗? Rails 有一个 number_to_phone 帮助器你可以使用

Long version:

string.split("").in_groups_of(4).map { |s| s.join("") }.join(" ")

Is this supposed to be a phone number of some sort? Rails has a number_to_phone helper that you could use.

蓝天白云 2024-10-11 19:42:29

另一个解决方案:

string.scan(/.{1,4}/).join(' ')

PS Ryan 的解决方案的好处是,如果您必须执行 i18n 操作,则可以将 string.split('') 更改为 string.chars.to_a。这可能是一场噩梦......

Another solution:

string.scan(/.{1,4}/).join(' ')

P.S. Ryan's solution has the benefit of possibly change string.split('') with string.chars.to_a if you ever have to do i18n stuff. It can be a nightmare...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文