evaluate
类: matlab.io.xml.xpath.Evaluator
命名空间: matlab.io.xml.xpath
语法
result = evaluate(evaluatorObj,xpExpr,xmlFilePath)
result = evaluate(evaluatorObj,xpExpr,xmlFilePath,resType)
result = evaluate(evaluatorObj,xpExpr,xmlFilePath,allowDoctype)
result = evaluate(evaluatorObj,xpExpr,xmlFilePath,resType,allowDoctype)
result = evaluate(evaluatorObj,xpExpr,ctxNode)
result = evaluate(evaluatorObj,xpExpr,ctxNode,resType)
说明
在指定的 XML 文件的上下文中计算指定的 XPath 表达式,并返回其类型由 XPath 表达式确定的对象。result
= evaluate(evaluatorObj
,xpExpr
,xmlFilePath
)
返回指定的结果类型。result
= evaluate(evaluatorObj
,xpExpr
,xmlFilePath
,resType
)
指定是否解析包含文档类型定义 (DTD) 的 XML 文件。result
= evaluate(evaluatorObj
,xpExpr
,xmlFilePath
,allowDoctype
)
返回指定的结果类型,并指定是否解析包含文档类型定义 (DTD) 的 XML 文件。result
= evaluate(evaluatorObj
,xpExpr
,xmlFilePath
,resType
,allowDoctype
)
在由 result
= evaluate(evaluatorObj
,xpExpr
,ctxNode
)ctxNode
指定的解析文档节点的上下文中计算指定的 XPath 表达式,并返回其类型由 XPath 表达式确定的对象。
在由 result
= evaluate(evaluatorObj
,xpExpr
,ctxNode
,resType
)ctxNode
指定的解析文档节点的上下文中计算指定的 XPath 表达式,并返回指定的结果类型。