search for: u0410

Displaying 1 result from an estimated 1 matches for "u0410".

Did you mean: 0410
2008 May 30
1
Unicode characters (R 2.7.0 on Windows XP SP3 and Hardy Heron)
...\u044F") # but not all three ... the last one gets skipped. # why's that and how do I do it? # 3 defining Unicode character ranges: in each of the following, # the last bracket does not get included (even if it gets defined # as a Unicode character, too): russ.char.yes<-"[\u0401\u0410-\u044F\u0451]" # all Russian Cyrillics russ.char.no<-"[^\u0401\u0410-\u044F\u0451]" # other characters russ.char.capit<-"[\u0410-\u042F\u0451]" # capital Russian Cyrillics russ.char.small<-"[\u0430-\u044F\u0401]" # small Russian Cyrillics # I can do that...