Le jeudi 05 novembre 2015 à 13:34 +0100, Tamas Papp a écrit : > Hi, > > Is there a Julia library (or base function) that allows conversion > between a unicode character and its unicode name? Ie mapping α to > "GREEK SMALL LETTER ALPHA" and vice versa. It looks like ICU supports this via u_charName() and u_charFromName(): http://userguide.icu-project.org/strings/properties
You should be able to extend ICU.jl easily to wrap these two methods, by looking at how it's done in the existing code : https://github.com/nolta/ICU.jl Regards
