小编典典

如何在输出中换行

all

我如何使\n我的输出真正起作用?目前它只是把它全部写在 1 个长块中。谢谢你的帮助

Dir.chdir 'C:/Users/name/Music'
music = Dir['C:/Users/name/Music/*.{mp3, MP3}']
puts 'what would you like to call the playlist?'
@new = ''
playlist_name = gets.chomp + '.m3u'

music.each do |z|
  @new += z + '\n'
end

File.open playlist_name, 'w' do |f|
  f.write @new
end

阅读 74

收藏
2022-08-01

共1个答案

小编典典

使用"\n"代替'\n'

2022-08-01