I am trying to get records from SQLiteDatabase in an Android program using the query function using a select parameter. I have had success with simple pattern matching using SQLite LIKE and wildcard%. Now I want to do more complex pattern matching using regular expressions.
According to the SQLite site , for the REGEXP statement to work, it must be user-defined. Has anyone managed to create specific SQLite functions for Android SQLiteDatabase? Or did someone find another way to use regular expressions when searching through strings in a database?
source share