Hi friends I am not very familiar with XPATH, and have a small question:
If I have a node that looks like this:
<books>
<book> book name. </book>
</books>
and I ask for this expression:
//books/book
then, is there a way for the xpath to return the normalize-string()'d version of the book name? as in, replace " book name. " and return only "book name." without any trailing or leading spaces? is that even possible with xpath.