Application Integration
- Application Integration
- All Products
fn:codepoint-equal(comparand1, comparand2)
Argument | Required/Optional | Description |
|---|---|---|
comparand1 | Required | The first string to compare. It can be an
actual string or an empty sequence
( () ). |
comparand2 | Required | The second string to compare. It can also be
an actual string or an empty sequence
( () ). |
|
|
|---|---|
fn:codepoint-equal('abc', 'abc') | true |
fn:codepoint-equal('abc', 'ab c') | false |
fn:codepoint-equal('abc', ()) | () |
fn:codepoint-equal((), ()) | () |
fn:codepoint-equal("hello", "world") | false |
fn:codepoint-equal("hello", "") | false |