15,076
edits
(Created page with " How to extract title from webpage == Extract title using IMPORTXML in google spreadsheets == === Suggest approach === {{kbd | key=<nowiki>=IMPORTXML(A1, "//head/title")</nowiki>}} Purpose: This formula specifically searches for the <title> tag within the web page's <head> section and imports its content. This is the most direct and precise method to obtain the web page's title, as the standard HTML structure places the <title> tag inside the <head> tag. === Other a...") Tags: Mobile edit Mobile web edit |
mNo edit summary Tags: Mobile edit Mobile web edit |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
How to extract title from webpage | How to extract title from webpage using google spreadsheets | ||
== Extract title using IMPORTXML in google spreadsheets == | == Extract title using IMPORTXML in google spreadsheets == | ||
| Line 22: | Line 22: | ||
Error {{kbd | key=<nowiki>#N/A</nowiki>}} | Error {{kbd | key=<nowiki>#N/A</nowiki>}} | ||
* Error with Details: {{kbd | key=<nowiki>"Failed to fetch URL: https://www.xxx.com" </nowiki>}} | * Error with Details: {{kbd | key=<nowiki>"Failed to fetch URL: https://www.xxx.com" </nowiki>}} (<nowiki>無法擷取網址:https://www.xxx.com</nowiki>) | ||
* Root cause: This error indicated that the webpage might be blocking the crawler from accessing its content. | * Root cause: This error indicated that the webpage might be blocking the crawler from accessing its content. | ||
Error {{kbd | key=#ERROR!}} | Error {{kbd | key=#ERROR!}} | ||
* Error with Details: {{kbd | key=<nowiki>"Formula parse error"</nowiki>}} | * Error with Details: {{kbd | key=<nowiki>"Formula parse error"</nowiki>}} (公式剖析錯誤。) | ||
* Root cause: This issue typically arises when there's an error in the second parameter of the IMPORTXML function, for example, {{kbd | key=<nowiki>=IMPORTXML(A1, "/html/body/title")</nowiki>}}. It indicates that the XPath or query provided is incorrect or not formatted properly. | * Root cause: This issue typically arises when there's an error in the second parameter of the IMPORTXML function, for example, {{kbd | key=<nowiki>=IMPORTXML(A1, "/html/body/title")</nowiki>}}. It indicates that the XPath or query provided is incorrect or not formatted properly. Correct one is {{kbd | key=<nowiki>=IMPORTXML(A1, "/html/head/title")</nowiki>}}. | ||
IMPORTXML Returns Multiple Values: | IMPORTXML Returns Multiple Values: | ||