我如何使用文本文件

时间:2015-05-31 11:17:57

标签: ruby file twitter readfile tweets

我尝试从文本文件发送推文而不获取额外的符号。

我的推文看起来像: ["这是我推特上的推文样本" \ n]<<它包括符号和额外的" n"。

我想要得到的是: 这是我希望我的推文看起来像的样本。 <<没有额外的符号。

我的代码:

def tweet
  file = File.open("tweets_from.txt","r")
  read = file.readlines.sample(1)
  client.update("#{read}").text
end

tweet

提前感谢您的帮助:)

2 个答案:

答案 0 :(得分:1)

read = file.readlines.map(&:chomp).sample
client.update(read).text

答案 1 :(得分:1)

只需更改

就足够了
read = file.readlines.sample(1)

到此:

read = file.readlines.sample.chomp

有关此方法(以及其他许多内容!)的更多信息,请访问:Ruby String docs