Ruby 字符串分割意外结果

发布于 2025-01-04 09:15:45 字数 226 浏览 0 评论 0原文

使用这段代码:

"\t\ttest\t\t\t".split(/\t/)

我期望得到以下结果:

 => ["", "", "test", "", "", ""]

但结果是:

=> ["", "", "test"]

为什么?

With this code:

"\t\ttest\t\t\t".split(/\t/)

I expect the following result:

 => ["", "", "test", "", "", ""]

But the result is:

=> ["", "", "test"]

Why?

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

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

发布评论

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

评论(1

尹雨沫 2025-01-11 09:15:45

如果省略 limit 参数,则返回的数组中不会包含尾随空字段。如果为负数,则返回它们:

# Supply -1 as the limit parameter
"\t\ttest\t\t\t".split(/\t/, -1)
=> ["", "", "test", "", "", ""]

String.split() 文档。

If the limit parameter is omitted, trailing null fields are left off the returned array. If it is negative, they are returned:

# Supply -1 as the limit parameter
"\t\ttest\t\t\t".split(/\t/, -1)
=> ["", "", "test", "", "", ""]

This is detailed in the String.split() documentation.

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