Actions
Bug #2822
closedRussian characters are missing from word characters types in Regexp
Description
=begin
"Hello".match(/[\w]*/)
=> #<MatchData "Hello">
"Привет".match(/[\w]*/)
=> #<MatchData "">
"Привет".match(/[А-Яа-яЁё\w]*/)
=> #<MatchData "Привет">
Non word character type \W behaves similar.
=end
Actions
Like0
Like0Like0