Hi guys The following xpath does not seem to work.
//FullName[sum(string-length(FirstName) | string-length(LastName))>= 30]
Error: Expression must evaluate to a node-set.
XML snippet
<FullName>
<FirstName>somereallylongfirstnameguy</FirstName>
<LastName>somereallylonglasttnameguyabcdefghijklmnopqrstuv</LastName>
</FullName>
I know the sum function adds number together, and string length returns numbers.
The following Expression works fine:
//FullName[string-length(FirstName) >= 1]
Any help would be appreciated, thanks!