亲爱的用户,
<note>
<to>ToText</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
我需要使用XML
获取Xpath
标记的字符串长度。我使用的是string-lenth()
,但无法呈现准确的结果。
有没有办法获得string-lenght(/to)
或string-lenght(/from)
?
答案 0 :(得分:4)
尝试使用以下XPath
:
//from/string-length(text())
或
//to/string-length(text())
答案 1 :(得分:0)
Mathias Muller是对的,这应该有效:
string-length(/note/to)
或string-length(/note/from)
请检查你的长度拼写.....