使用IRB,我想输入一个多行字符串,以便从中删除某些字符. “获取”只允许单行 – 有多个行相似的功能.
ASCII_project.rb(main):002:0* puts = "What's the text you want to strip?" => "What's the text you want to strip?" ASCII_project.rb(main):003:0> str = gets
我现在想粘贴一段文本 – 因为新行不起作用.这就是为什么我想收集多条线
这是代码
# encoding: CP850 puts = "What's the text you want to strip?" str = gets str.gsub!(/\P{ASCII}/,'') puts str
解决方法
你可以这样做,
$/ = "END" user_input = STDIN.gets puts user_input
当您认为输入完成时,请确保键入END关键字,
同样,这只适用于不是irb的实际翻译.