I am trying to use a regex in MySQL. I have this expresión [a-zA-Z]^\\.
I supossed the ^
symbol will deny the dot in the expression. If I write a text string with a dot I receive 0 matches but when I write a text string without the dot I also receive 0 matches. For example:
SELECT 'roger' REGEXP '[a-zA-Z]^\\.'
gives me 0 matches. I just need to verify if this expresión ^ denies the dot or not and what am I doing wrong. Thanks in advance.