
fn:normalize-space( [$input as xs:string?] ) as xs:string?
Returns the specified string with normalized whitespace, which strips off any leading or trailing whitespace and replaces any other sequences of more than one whitespace characters with a single space character (#x20).
| Parameters | |
|---|---|
| input | The string from which to normalize whitespace. |
fn:normalize-space("
this
is
a string
")
=> this is a string