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.
スペースで区切られた複数の文字列を持つ配列は、1 つの連結された文字列を持つ配列を生成します。私見、構文エラーが発生するはずです。この動作は正しいですか?
["1" "2" "3"] #=> ["123"]
これは配列とは関係ありません。文字列リテラルの特徴です。文字列リテラルを引用符で囲んで並べて記述すると、連結によって得られる文字列を表します。