My Android dictionary project use Arabic language for doing search view between search list. run project was successful with using regex. but using of SQLCipher for encrypt caused error. when typed Arabic character in search view:
net.sqlcipher.database.SQLiteException: no such function: REGEXP: while compiling: Select * From tblWord Where word_arabic REGEXP ‘^ل[ًٌٍَُِّْ]{0,}.*’
Now, Please tell me the way to use alternative for REGEXP.
LIKE. does it work for you?where substr(language, 1, 1) in ("ل", "[", "َ", "ً", "ُ", "ٌ", "ِ", "ٍ", "ّ", "ْ", "]", "{", "0")?args- since your SQL query has no placeholders to inject variables to.