我一直在尝试使用Google表格中的importxml
从这段源代码中提取信息。如果我使用importxml("url";"//script[@nonce='true']")
,它将返回//
。我想专门提取数字19.5
(带有标签“VacânciaFinanceira”的向量的最后一个数字),但是在所有尝试中都失败了。谁能帮我?
感谢帮助
<script nonce="true">
//<![CDATA[
(function() { var initChart = function() { var ctx = document.getElementById("chart-4");
var chart = new Chart(ctx, { type: "bar", data: {"labels":["Junho/2018","Julho/2018","Agosto/2018","Setembro/2018","Outubro/2018","Novembro/2018","Dezembro/2018","Janeiro/2019","Fevereiro/2019","Março/2019","Abril/2019","Maio/2019"],
"datasets":[{"label":"Ocupação Física","data":[65.2,65.6,66.2,66.8,66.8,66.8,66.8,66.8,76.0,74.2,74.2,72.3],"backgroundColor":"#00bff3"},
{"label":"Vacância Física","data":[34.8,34.4,33.8,33.2,33.2,33.2,33.2,33.2,24.0,25.8,25.8,27.7],"backgroundColor":"#004566"},
{"label":"Ocupação Financeira","data":[68.5,69.5,70.3,70.6,70.7,71.1,71.1,71.2,84.7,82.1,81.4,80.5],"backgroundColor":"#e67e22"},
{"label":"Vacância Financeira","data":[31.5,30.5,29.7,29.4,29.3,28.9,28.9,28.8,15.3,17.9,18.6,19.5],"backgroundColor":"#f1c40f"}]},
options: {"maintainAspectRatio":false,"responsive":true,"scales":{"yAxes":[{"ticks":{"beginAtZero":true,"callback":function(value, index, values) { return value + "%"; }}}]},"tooltips":{"enabled":true,"mode":"single","callbacks":{"label":function(tooltipItems, data) { return tooltipItems.yLabel + "%"; }}}}, plugins: {}, }); }; if (typeof Chart !== "undefined" && Chart !== null) { initChart(); } else { /* W3C standard */ if (window.addEventListener) { window.addEventListener("load", initChart, false); } /* IE */ else if (window.attachEvent) { window.attachEvent("onload", initChart); } } })();
//]]>
</script>