gpt4 book ai didi

html - Nokogiri 排除 HTML 类

转载 作者:行者123 更新时间:2023-11-28 01:11:38 25 4
gpt4 key购买 nike

我正在尝试抓取所有对我们 Facebook 群组中的帖子发表评论的人的姓名。我在本地下载了该文件,并且能够抓取评论者的姓名以及回复这些评论的人的名字。我只想要原始评论,而不是回复...似乎我必须排除 UFIReplyList 类,但我的代码仍在提取所有名称。任何帮助将不胜感激。谢谢!

require 'nokogiri'
require 'pry'

class Scraper
@@all = []

def get_page
file = File.read('/Users/mark/Desktop/raffle.html')
doc = Nokogiri::HTML(file)
# binding.pry

doc.css(".UFICommentContent").each do |post|
# binding.pry
author = post.css(".UFICommentActorName").css(":not(.UFIReplyList)").text

@@all << author
end

puts @@all
end
end

Scraper.new.get_page

最佳答案

遍历每个 .UFICommentActorName 元素的祖先,以拒绝那些包含在 .UFIReplyList 元素中的元素。

@authors_nodes = doc.css(".UFICommentActorName").reject do |node|

# extract all ancestor class names;
# beware of random whitespace and multiple classes per node
class_names = node.ancestors.map{ |a| a.attributes['class'].value rescue nil }
class_names = class_names.compact.map{ |names| names.split(' ') }
class_names = class_names.flatten.map(&:strip)

# reject if .UFIReplyList found
class_names.include?('UFIReplyList')

end

@authors_nodes.map(&:text)

关于html - Nokogiri 排除 HTML 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52063941/

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