normalize-space

This function returns the input string with white space normalized by stripping leading and trailing white space and replacing sequences of white space characters with a single space.

Signature:

normalize-space([inputString as string])

Arguments:

  • inputString: The input string.

For example:

normalize-space(' book title ') returns 'book title'.