unicode - Cyrillic UTF8 to ASCII with XQuery -
i need generate string id's cyrillic data using ascii characters. i'm using xquery grab data xml files. point can convert cyrillic characters ascii characters.
i've tried using normalize-unicode($string, form)
form
each of 4 normalization forms, don't think has mappings cyrillic english, @ least doesn't change $string
input.
for example, want:
normalize-unicode("Идејата", 'nfkd')
to produce along lines of:
"naejata"
are there functions in xquery can sort of thing? appreciated!
Comments
Post a Comment