I discovered a # of records in my table where a field seems to have carriage returns. I found them using:
Select Field from Table WHERE Field REGEXP "\r\n"
I'd like to remove them but using regex in replace did not work:
Update Table set Field=Replace(Field,REGEXP "\r\n",'') where Field REGEXP "\r\n"
As an aside I have found several fields that did NOT match the regex query but still show up in the memo field as broken e..g
Queen
Anne
vs
Queen Ann
Is there any other Regex character I should be adding so I can search on any/all combinations and replace where I am not getting simply a space?