Application Integration
- Application Integration
- All Products
fn:remove(target, position)
Argument | Required/Optional | Description |
|---|---|---|
target
| Required | The sequence from which an item will be
removed. |
position | Optional | The position of the item in the sequence that
should be removed. If $pos is less than 1 or
greater than the number of items in the sequence, the sequence
remains unchanged. |
|
|
|---|---|
fn:remove( ('a', 'b', 'c'), 2)
| ('a', 'c') |
fn:remove( ('a', 'b', 'c'), 10) | ('a', 'b', 'c') |
fn:remove( ('a', 'b', 'c'), 0) | ('a', 'b', 'c') |