-
Type: Improvement
-
Resolution: Unresolved
-
Priority: Unknown
-
None
-
Affects Version/s: None
-
Component/s: None
Support cyrillic and maybe some other languages for beginsWith, contains, endsWith functions.
Realm realm = Realm.getInstance(this); realm.beginTransaction(); Person person = realm.createObject(Person.class); person.setName("ВЛадимир"); realm.commitTransaction(); RealmResults<Person> results = realm.where(Person.class) .beginsWith("name", "вл", false) .findAll(); // results.size() returns 0 :(
Sqlite also has the same bug. I am forced to use workaround with additional normalized column for that search functionality
- depends on
-
RCORE-114 Add ICU support
- Closed