Description
The functx:right-trim function removes all whitespace at the end of $arg. Whitespace is defined as it is in XML, namely space, tab, carriage return and line feed. If $arg is the empty sequence, it returns a zero-length string.
Arguments and Return Type| Name | Type | Description |
$arg |
xs:string? |
the string to trim |
| return value |
xs:string |
XQuery Function Declaration| See XSLT definition. | | XQuery Syntax for July 2004 - January 2007 (1.0): |
|---|
declare namespace functx = "http://www.functx.com";
declare function functx:right-trim
( $arg as xs:string? ) as xs:string {
replace($arg,'\s+$','')
} ; | | XQuery Syntax for May 2003: |
|---|
declare namespace functx = "http://www.functx.com"
define function right-trim
( $arg as xs:string? ) as xs:string {
fn:replace($arg,'\s+$','')
} |
Examples| XQuery Example | Results |
|---|
functx:right-trim('xyz ')
|
xyz
|
functx:right-trim(' x xyz ')
|
x xyz
|
functx:right-trim('xyz')
|
xyz
|
See AlsoHistory |
|