title: Modern XML usefull resources
author: @emchateau, @sardinecan
since: 2020-06-24
description: Selected XML resources from the ANR Experts projet for the NA+DAH Getty advanced workshop.
title: Modern XML usefull resources
author: @emchateau, @sardinecan
since: 2020-06-24
description: Selected XML resources from the ANR Experts projet for the NA+DAH Getty advanced workshop.
xquery version "3.1"; | |
declare function local:strip-diacritics($string as xs:string) as xs:string { | |
$string | |
=> normalize-unicode("NFD") | |
=> replace("\p{IsCombiningDiacriticalMarks}", "") | |
}; | |
declare function local:inspect-diacritics($string as xs:string) as element() { | |
let $normalized := normalize-unicode($string, "NFD") |