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.
私は3つの文字列を持っています:
first = "test" second = "hello" third = "world"
私は次のようにそれらを連結したい:
test-hello-world
私は使用してみました+:
+
first + "-" + second + "-" + third
しかし、Ruby でこれを行うためのより良い方法を探しています。