I want to find only non alphanumeric characters and only without space without '-'...
But this is not working:
REGEXP '^[a-zA-Z0-9/-:space:]*' This regexp is valid on these data:
'Test Cinema' 'AMERICANII AU TALENT - SEZONUL 5, EPISODUL 12' I dont want to find these characters, i want to find fields like this:
'Test Item;?!' 'LOCAL KOMBAT "FIERBE BULGARIA"' How can i write a regexp which is only valid on other characters.