I am writing a find and replace workflow and it needs to be able to find special characters, one of which is a y with two dots above it.
https://www.compart.com/en/unicode/U+00FF
I currently use a MACRO in Notepad++ to do this find and replace, but I need a bit more automation in this process.
The character code in Notepad++ shows ÿ
'Find and Replace
Const ForReading = 1
Const ForWriting = 2
Set objFile = objFSO.OpenTextFile("C:\TEST\" & JobNo & " " & strfolder & "\CustomerOriginals\" & FN, ForReading)
strText = objFile.ReadAll
objFile.Close
strText = Replace(strText, ChrW(00FF), "")
Set objFile = objFSO.OpenTextFile("C:\TEST\" & JobNo & " " & strfolder & "\CustomerOriginals\" & FN, ForWriting)
objFile.WriteLine strText
objFile.Close
Any help would be greatly appreciated.