Most special characters like Tabs and Line Break and Carriage Returns can be found and replaced in MS Access by using the character codes. But you can't use the find and replace dialog.
Instead, author an update query and enter the following to remove tabs:
Replace([myfield],Chr(9),"")
If removing line breaks you need to replace both the line break and carriage return character:
Replace(Replace([myfield],Chr(10),""),Chr(13),"")
If editing for HTML you'd edit this to the following for HTML line breaks:
Replace(Replace([myfield],Chr(10),"<br />"),Chr(13),"<br />")
For other characters, look up the ascii character code. (use the numbers in the "Dec" column in the tables)
Instead, author an update query and enter the following to remove tabs:
Replace([myfield],Chr(9),"")
If removing line breaks you need to replace both the line break and carriage return character:
Replace(Replace([myfield],Chr(10),""),Chr(13),"")
If editing for HTML you'd edit this to the following for HTML line breaks:
Replace(Replace([myfield],Chr(10),"<br />"),Chr(13),"<br />")
For other characters, look up the ascii character code. (use the numbers in the "Dec" column in the tables)
Comments
SELECT [mytable].*, IIf(InStr(1,[myfield],Chr(10))<>0,True,False) AS HasBR FROM [mytable]
WHERE (((IIf(InStr(1,[myfield],Chr(10))<>0,True,False))=True));