gpt4 book ai didi

ruby - 我如何使用文本文件中的 ruby​​ 和 twitter tweet

转载 作者:数据小太阳 更新时间:2023-10-29 09:03:08 27 4
gpt4 key购买 nike

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

我的推文看起来像:[“这是我在 Twitter 上的推文示例”\n] << 它包括符号和额外的“n”。

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

我的代码:

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

关于ruby - 我如何使用文本文件中的 ruby​​ 和 twitter tweet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30556757/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com