I have been working on this regex and it seems to be working but is there a better way to write this?
the "(orld)" is the actual search
SELECT FROM tablename WHERE param REGEXP '"test2":"([[:alnum:]]|[[:digit:]]|[[:blank:]])(orld)+([[:alnum:]]|[[:digit:]]|[[:blank:]]])*"'
I want to query to be able to search any character the user types in, not sure what combination of characters classes for mysql I would need to include other symbols and such. Anyone written a better regex for this?