fn:normalize-unicode

fn:normalize-unicode( string? $srcval) → string?

Function signature

$srcval

xs:string ?

Result

xs:string ?

Converts a string to Unicode normalized form NFC by modifying the way in which combining characters are represented

XPath 2.0 Specification

Implemented in Saxon 8.5.

fn:normalize-unicode( string? $srcval, string $normalizationForm) → string?

Function signature

$srcval

xs:string ?

$normalizationForm

xs:string

Result

xs:string ?

Converts a string to a given Unicode normalized form by modifying the way in which combining characters are represented

XPath 2.0 Specification

Implemented in Saxon 8.5. The normalization form must be one of "NFC", "NFD", "NFKC", or "NFKD" (the value "fully-normalized" is not supported).

Expand

Up  Next