gpt4 book ai didi

ruby-on-rails - 参数中的字符串操作[ :something]

转载 作者:太空宇宙 更新时间:2023-11-03 17:02:40 25 4
gpt4 key购买 nike

params[:svn_path] 返回这样的 URL

http://svn.repos.mywebsite.com/testingtitle.documents

现在我只需要获取 url 的最后一部分,即 testingtitle

如何获取?

提前致谢

最佳答案

您可以使用 Uri module ruby

uri = URI.parse("http://svn.repos.mywebsite.com/testingtitle.documents")

path = uri.path #"/testingtitle.documents"
path_with_no_slash = path.gsub("/", "") #"testingtitle.documents"
array = path_with_no_slash.split(".") #["testingtitle", "documents"]
result = array[0] #"testingtitle"

关于ruby-on-rails - 参数中的字符串操作[ :something],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13394654/

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