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.
次のようなユーザーから文字列変数を取得します。
mail = gets
この変数を使用してファイルを開きます。
file = File.new(mail, "r") ##obviously this isn't working
このメール変数を実際に使用してその名前のファイルを開くにはどうすればよいですか?
ありがとう
mail = gets.chomp
get関数は、最後に\nが付いた文字列を返します。
私は好きmail = gets.stripです。
mail = gets.strip
strip少し遅いようですchompが、もう少し読みやすいと思います。
strip
chomp
ベンチマークに興味がある場合は、ここで要点を確認してください。