我正在尝试从文本文件发推文,而不需要额外的符号。
我的推文是这样的:["这是我在twitter上的推文样本"n] <<它包括符号和额外的"n"。
我想要得到的是:这是我想让我的推特看起来像的一个样本。& lt; & lt;没有额外的符号。
我代码:def tweet
file = File.open("tweets_from.txt","r")
read = file.readlines.sample(1)
client.update("#{read}").text
end
tweet
提前感谢您的帮助:)
只要改变
就足够了read = file.readlines.sample(1)
:
read = file.readlines.sample.chomp
更多关于这个方法(和许多其他的!)在这里:Ruby String docs
read = file.readlines.map(&:chomp).sample
client.update(read).text