Feb 6, 2005 #1 arcnon Programmer Aug 12, 2003 242 US I have a characacter in a file that reads CA in a hex editor. what is the easiest way to replace it. I am using the normal open(F, "test.txt")
I have a characacter in a file that reads CA in a hex editor. what is the easiest way to replace it. I am using the normal open(F, "test.txt")
Feb 6, 2005 Thread starter #2 arcnon Programmer Aug 12, 2003 242 US figured it out. =~s/\xca//g; Upvote 0 Downvote