获取String的长度

时间:2017-02-08 08:21:17

标签: xpath

亲爱的用户,

 <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)

2 个答案:

答案 0 :(得分:4)

尝试使用以下XPath

//from/string-length(text())

//to/string-length(text())

答案 1 :(得分:0)

Mathias Muller是对的,这应该有效: string-length(/note/to)string-length(/note/from)

请检查你的长度拼写.....