如何在 Ruby 中获取从位置 N 到最后一个字符的子字符串?

发布于 2024-11-05 22:07:09 字数 59 浏览 2 评论 0原文

我想从字符串中获取从位置 N 到字符串末尾的子字符串。

在 Ruby 中如何做到这一点?

I'd like to get a substring from a string from position N to the end of the string.

What's the way to do it in Ruby?

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

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

发布评论

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

评论(3

差↓一点笑了 2024-11-12 22:07:09

只需将字符串切片即可:

string[N..-1]

Just slice the string like:

string[N..-1]
枫林﹌晚霞¤ 2024-11-12 22:07:09

从 Ruby 2.6 开始,您可以使用 无限范围 语法:

string[N..]

其中 N 是起始索引。 (无需指定 -1 作为结束索引。)

例如:

'abcdefghij'[3..]  # Evaluates to 'defghij'

As of Ruby 2.6, you can use endless range syntax for this:

string[N..]

where N is the start index. (No need to specify a -1 for the end index.)

For example:

'abcdefghij'[3..]  # Evaluates to 'defghij'
乜一 2024-11-12 22:07:09

或者您可以使用尺寸:
str[N,str.size-1]

or you can use the size :
str[N,str.size-1]

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