PowerCenter
- PowerCenter 10.5
- All Products
EMPLOYEE[./FULLNAME=concat(./ENAME/LASTNAME,./ENAME/FIRSTNAME)]
ORDER_ITEMS[round(./DISCOUNT) > 15]
boolean(string)
Function | Syntax | Description |
---|---|---|
concat | concat ( string1, string2 ) | Concatenates two strings. |
contains | contains ( string, substring ) | Determines a string contains another string. |
normalize-space | normalize-space ( string ) | Strips leading and trailing white space from a string. |
starts-with | starts-with ( string, substring ) | Determines if string1 starts with string2. |
string | string ( value ) | Converts a number or Boolean to a string. |
string-length | string-length ( string ) | Returns the number of characters in a string, including trailing blanks. |
substring | substring ( string, start [ ,length ] ) | Returns a portion of a string starting at a specified position. |
substring-after | substring-after ( string, substring ) | Returns a portion of a string starting at a specified position. |
substring-before | substring-before ( string, substring ) | Returns the characters in a string that occur before a substring. |
translate | translate ( string1, string2, string3 ) | Converts the characters in a string to other characters. |
Function | Syntax | Description |
---|---|---|
ceiling | ceiling ( number ) | Rounds a number to the smallest integer that is greater than or equal to the passed number. |
floor | floor ( number ) | Rounds a number to the largest integer that is less than or equal to the passed number. |
number | number ( value ) | Converts a string or Boolean value to a number. |
round | round ( number ) | Rounds a number to the nearest integer. |
Function | Syntax | Description |
---|---|---|
boolean | boolean ( object ) | Converts an object to Boolean. |
false | false ( ) | Always returns FALSE. |
lang | lang ( code ) | Determines if an element has an xml:lang attribute that matches the code argument. |
not | not ( condition ) | Returns TRUE if a Boolean condition is FALSE and FALSE if the Boolean condition is TRUE. |
true | true ( ) | Always returns TRUE. |