I would like to use regex using the regexp command in mysql query. The regular expression contains the rule of any character except line break.
SELECT * FROM column regexp 'EXP1.*=*.*EXP2'
But mysql seams to handle. * like any character, including line break
Any ideas on how to change the regex to match any character except line break
thank
source
share