gpt4 book ai didi

用于检查字符串是否在文件中的 Ruby 脚本?

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

我有单词及其频率的 CSV 文件,还有一个包含几个感兴趣单词的 .txt 文件,用换行符分隔。

我正在寻找一种方法来检查 CSV 的每一行的第一列值(单词)是否也在 .txt 文件中。

我猜想类似于 fgrep -x -f patternfile.txt data.csv 除了 CSV 中只有 1 列而不是整行?

最佳答案

嘿,您可以使用 FasterCSV 打开并循环遍历记录。

        FasterCSV.foreach("#{file_path}") do |row| 
puts row[0]#row[0] is the first column only
end

关于用于检查字符串是否在文件中的 Ruby 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9015011/

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