LoginSignup
0
0

More than 3 years have passed since last update.

ruby match 正規表現、大文字小文字区別しない

Posted at

以下AndroidであればPlayStore、iosであればAppStoreにリダイレクトさせるロジックの一部

if ua.match(/android/i) != nil
  redirect_to "https://play.google.com/store/apps/details?id=hoge"
elsif ua.match(/ios/i) != nil || ua.match(/iphone/i) != nil || ua.match(/ipad/i) != nil
  redirect_to "https://itunes.apple.com/th/app/fuga"
end
0
0
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
0
0