我正试图从某个用户的Twitter Feed中提取推文:
select * from html
where url='https://twitter.com/gvanrossum' and
xpath="//*[@data-component-term='tweet']//*[contains(concat(' ', normalize-space(@class), ' '), ' ProfileTweet-text ')]/descendant-or-self::*//text()"
但我得到的结果只是一个包含所有推文的连续文本的字符串。如何通过分开的推文文本获得结果?
这是实际和预期结果不同的一个例子:
实际结果:
"text1 text2 text3"
预期结果:
[
"text1",
"text2",
"text3"
]