There is a CKEditor field on our website which saves it's HTML to a text field in a MySQL database.
What I'm wondering is, if there is a function (regex for example?) that could strip out HTML tags when doing a LIKE match,
e.g. so that searching for:
like '%this is a test%'
would find
'this<strong>is</strong>a test
I get the feeling that it won't be practical/possible, but worth an ask!