LoginSignup
9
6

More than 5 years have passed since last update.

URI.joinでちょっと嵌った。

Posted at

第1引数の末尾に/があるのとないのでは結果が異なる。

URI.join("http://www.hoge.jp/fuga", "hege").to_s
# => "http://www.hoge.jp/hege"

URI.join("http://www.hoge.jp/fuga/", "hege").to_s
# => "http://www.hoge.jp/fuga/hege"
9
6
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
6