| 1. |
Solve : Remove what i think are invisible or printer character from txt file? |
|
Answer» I'm having a hard time capturing the data using a vb script b/c of these characters i noticed in notepad++. This is causing my data to not line up correctly and causing me to capture incorrect data for my sub strings. x86 disassembler Quote from: daillest319 on November 12, 2014, 08:37:05 AM I'm having a hard time capturing the data using a vb script b/c of these characters i noticed in notepad++. This is causing my data to not line up correctly and causing me to capture incorrect data for my sub strings.You can replace them with nothing, effectively removing them from the string Code: [Select]LineResult = Replace(LineResult,Chr(0),"") 'Null character LineResult = Replace(LineResult,Chr(240),"") 'greek character (Delta?) LineResult = Replace(LineResult,Chr(145),"") 'backtick thing LineResult = Replace(LineResult,Chr(15),"") 'Shift In Character I would first eliminate other sources of the characters such as how you are retrieving the data.Thank you all for your help. |
|