解析字符串以添加到URL编码的URL

时间:2013-06-29 01:57:24

标签: ruby-on-rails ruby ruby-on-rails-3

给出字符串:

"Hello there world"

如何创建这样的URL编码字符串:

"Hello%20there%20world"

如果字符串也有其他符号,我也想知道该怎么做,例如:

"hello there: world, how are you"

最简单的方法是什么?我打算解析,然后为此构建一些代码。

4 个答案:

答案 0 :(得分:108)

require 'uri'

URI.encode("Hello there world")
#=> "Hello%20there%20world"
URI.encode("hello there: world, how are you")
#=> "hello%20there:%20world,%20how%20are%20you"

URI.decode("Hello%20there%20world")
#=> "Hello there world"

答案 1 :(得分:16)

Ruby的URI对此非常有用。您可以以编程方式构建整个URL并使用该类添加查询参数,它将为您处理编码:

require 'uri'

uri = URI.parse('http://foo.com')
uri.query = URI.encode_www_form(
  's' => "Hello there world"
)
uri.to_s # => "http://foo.com?s=Hello+there+world"

这些例子很有用:

URI.encode_www_form([["q", "ruby"], ["lang", "en"]])
#=> "q=ruby&lang=en"
URI.encode_www_form("q" => "ruby", "lang" => "en")
#=> "q=ruby&lang=en"
URI.encode_www_form("q" => ["ruby", "perl"], "lang" => "en")
#=> "q=ruby&q=perl&lang=en"
URI.encode_www_form([["q", "ruby"], ["q", "perl"], ["lang", "en"]])
#=> "q=ruby&q=perl&lang=en"

这些链接也可能有用:

答案 2 :(得分:12)

如果有人感兴趣,最新的方法是在ERB中进行:

    <%= u "Hello World !" %>

这将呈现:

  

您好%20World%20%21

url_encode

的缩写

您可以找到文档here

答案 3 :(得分:11)

虽然目前的答案是利用自Ruby 1.9.2以来已被弃用和过时的URI.encode。最好使用CGI.escapeERB::Util.url_encode