Great advance by using ICU library, and exposing us with NormalizeString function.

But, I would like more... hehehe

Any plans to expose additional functionalities from ICU library to us ?

I would like to convert special chars, to their plain form..

ã -> a
Ú -> U
ç -> c
etc ... you got the idea.

I know ICU lib is capable of doing such Transforms ..
For example, to remove accents from characters, use the following transform:
NFD; [:Nonspacing Mark:] Remove; NFC.


and as DAW is already using ICU internally, it would be nice to have access to this class interface..


c++ - Code to strip diacritical marks using ICU - Stack Overflow


Thanks