Google Sheet importxml tr td

时间:2021-05-30 13:22:14

标签: xml google-sheets xpath

https://www.klsescreener.com/v2/stocks/view/5232/leon-fuat-berhad enter image description here

上面是我用的网站,想导入行市盈率,只想导入值(6)。我写的代码是 =IMPORTXML("https://www.klsescreener.com/v2/stocks/view/5232/leon-fuat-berhad", "//td[contains(@class,'number')] ") 它会在右侧拉出整个值,但是我只想选择我正在努力这样做的市盈率数字。如何编辑代码只选择市盈率?

2 个答案:

答案 0 :(得分:1)

这最终取决于您愿意在 XPath 表达式中嵌入多少有关文档结构和文字的详细信息。例如,这将检索您的市盈率值 6:

=IMPORTXML("https://www.klsescreener.com/v2/stocks/view/5232/leon-fuat-berhad", "//table[contains(@class,'stock_details')]//td[@title='Price to Earning Ratio']/following-sibling::td[1]/text()")

使用 XPath 表达式,首先选择包含“stock_details”类的表,然后在表中选择一个标题为“Price to Earning Ratio”的 td,然后选择下一个(第一个跟随)的文本td 元素。

或者您可以使用最初尝试的类来识别以下 td(带有 6):

=IMPORTXML("https://www.klsescreener.com/v2/stocks/view/5232/leon-fuat-berhad", "//table[contains(@class,'stock_details')]//td[@title='Price to Earning Ratio']/following-sibling::td[@class='number']/text()")

以及其他类似的方法,具体取决于您对哪种文字/结构假设感到满意。

答案 1 :(得分:1)

另一种使用 indexxml 路径提取值的方法

=index(IMPORTXML("https://www.klsescreener.com/v2/stocks/view/5232/leon-fuat-berhad", "//div[@class ='table-responsive']//table[1]/tbody/tr[9]/td[2]"),1)