gpt4 book ai didi

ruby - 使用任何方法从 Ruby 中的字符串中提取子字符串的快速方法

转载 作者:行者123 更新时间:2023-12-02 18:01:28 26 4
gpt4 key购买 nike

作为 Ruby 初学者,如何从 Ruby 字符串中提取子字符串?

示例:

string1 = "1.1.67.01-f9@92a47088f49d095f0"

我想提取从开头到“-”的子字符串。所以子字符串是'1.1.67.01'

最佳答案

如果您可以保证第一个 - 出现在您想要的子字符串之后,Ruby’s string split方法是一个很好的候选者。这看起来像:

string1.split('-')[0]

关于ruby - 使用任何方法从 Ruby 中的字符串中提取子字符串的快速方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74295577/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com