peskywinnets
Registered User.
- Local time
- Today, 17:25
- Joined
- Feb 4, 2014
- Messages
- 578
So I'm wanting to replace all occurences of £ in text file with nothing (e.g. £1.00 becomes 1.00), with this command...
FileContent = Replace(FileContent, "£", "")
but when I open the text file afterwards, all the occurrences of £ have been turned into  symbol/character
e.g. £1.00 becomes Â1.00
...which means when I try to import the text file into Access it errors on that column.
What am I doing wrong (all other 'replace' commands acting on the same file are working fine!)
FileContent = Replace(FileContent, "£", "")
but when I open the text file afterwards, all the occurrences of £ have been turned into  symbol/character
e.g. £1.00 becomes Â1.00
...which means when I try to import the text file into Access it errors on that column.
What am I doing wrong (all other 'replace' commands acting on the same file are working fine!)
Last edited: