How to achieve word boundary in Sqlite Android?
问题 I would like to achieve the following (a full text search), SELECT * FROM tablename where columnname REGEXP '[[:<:]]some string[[:>:]]' Where i am interested in only exact strings (not just words) from a full text column. I have been using the exact SQL above in MySQL and now migrating most of the code to android apps. But I have been looking at various posts where it is mentioned that REGEXP isn't supported in Android Sqlite (for example: link1, link2, link3 ). Is there a way to enable