Actions
Bug #3376
closedrussian support
Bug #3376:
russian support
Description
=begin
- String#upcase/String#downcase don't work with russian characters
ruby-1.9.2-preview3 > "привет".upcase
=> "привет"
ruby-1.9.2-preview3 > "ПРИВЕТ".downcase
=> "ПРИВЕТ"
- Regex doesn't work with POSIX bracket classes
ruby-1.9.2-preview3 > "привет" =~ /[:alpha:]/
=> nil
It's working with unicode groups
ruby-1.9.2-preview3 > "привет" =~ /\p{L}/
=> 0
- Negated unicode groups don't work
SyntaxError: (irb):13: invalid character property name {L}: /\P{L}/
from /Users/yury/.rvm/rubies/ruby-1.9.2-preview3/bin/irb:17:in `'
=end
Actions