Hello everyone,
I have this weird - at least to me - problem. I have files' names that contain "/" characters as in [blue]"10?13?2010 RER Weekly eNewsletter [72A6][122096].eml.msg.htm"[/blue]. The task is to replace "?" for "_". When I go character-by-charater in the file name, using Mid function as in Mid(fName,i,1) then "?" is recognized as character 47. But when I use Instr(1, fName, chr(47)) it returns 0.
I hope you can see the difference between character "?" and "/" . How come both have ASC code of 47. What is that character "?" ?
Thank you in advance.
I have this weird - at least to me - problem. I have files' names that contain "/" characters as in [blue]"10?13?2010 RER Weekly eNewsletter [72A6][122096].eml.msg.htm"[/blue]. The task is to replace "?" for "_". When I go character-by-charater in the file name, using Mid function as in Mid(fName,i,1) then "?" is recognized as character 47. But when I use Instr(1, fName, chr(47)) it returns 0.
I hope you can see the difference between character "?" and "/" . How come both have ASC code of 47. What is that character "?" ?
Thank you in advance.