Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的に私はこの比較を実行しようとしています
request.fullpath == "/contacts/"+current_user.id
このような比較を実行するために文字列を変数と連結する最良の方法は何ですか?
あなたはそれを次のように補間することができます request.fullpath == "/contacts/#{current_user.id}"
request.fullpath == "/contacts/#{current_user.id}"
"/contacts/#{current_user.id}"
常に文字列補間を使用します。これは、<<および+
<<
+