Find HTML trees without values
tf = ismissing(tree)
example
tf = ismissing(tree) returns a logical array that indicates which elements of tree do not reference HTML trees. For example, if tree is given by the Parent property of a root node, then the function returns 1 (true).
tf
tree
Parent
true
collapse all
To test if an HTML tree object represents a root node, test that the Parent property is missing.
Read HTML code from the URL https://www.mathworks.com/help/textanalytics using webread.
https://www.mathworks.com/help/textanalytics
webread
url = "https://www.mathworks.com/help/textanalytics"; code = webread(url);
Parse the HTML code using htmlTree.
htmlTree
tree = htmlTree(code);
Test if the parent of tree references an HTML tree.
tf = ismissing(tree.Parent)
tf = logical 1
Since tree represents the root node of the HTML tree, the value of tree.Parent is missing and the ismissing function returns 1 (true).
tree.Parent
missing
ismissing
HTML tree, specified as an htmlTree array.
extractFileText | extractHTMLText | findElement | getAttribute | htmlTree | readPDFFormData | tokenizedDocument
extractFileText
extractHTMLText
findElement
getAttribute
readPDFFormData
tokenizedDocument
You have a modified version of this example. Do you want to open this example with your edits?