Hi,
there is a ruby gem to manipulate composite characters (0300-036f) like
single char?
I need something like this
s="V̅IX̣" # V with overline (U0305), I, X with dot below (U0323)
s.length #=> 3
s[0] #=> 'V̅' # V with overline (0305)
thanks, and sorry for my bad english
> Hi,
> there is a ruby gem to manipulate composite characters (0300-036f) like
> single char?
What kind of manipulations do you have in mind?
> I need something like this
> s="V̅IX̣" # V with overline (U0305), I, X with dot below (U0323)
> s.length #=> 3
> s[0] #=> 'V̅' # V with overline (0305)
> thanks, and sorry for my bad english