I am reading from a text file, but the thing is: the text file allready contains escaped text - so when I read it, i get a "double escaped" text. I'd need a function, that "unescapes" a string, or "tell" Perl not to escape the strings, i read from a txt file. ('c:\\abc' becomes 'c:\\\\abc' internally. I need to unescape 'c:\\\\abc', so I can then print "c:\\abc" to get 'c:\abc' on file or STDOUT. And the string are not just like 'c:\\abc', but also include other special chars.
Have a nice day!