I have been having trouble finding the metacharacter for the 'Unit Separator' to replace the tabs in a flat file.
So far I have this:
File.WriteAllLines(outputFile,
File.ReadLines(inputFile)
.Select(t => t.Replace("\t", "\0x1f"))); //this does not work
I have also tried:
File.WriteAllLines(outputFile,
File.ReadLines(inputFile)
.Select(t => t.Replace("\t", "\u"))); //also doesn't work
AND
File.WriteAllLines(outputFile,
File.ReadLines(inputFile)
.Select(t => t.Replace("\t", 0x1f))); //also doesn't work
How do I correctly use hex as a parameter? Also, what is the metacharacter for the 'Unit Separator"?
the metacharacter for the unit separator is
you should be able to use it like
EDIT: Since a discussion about control characters started to happen, Ill add this definition for posterity's sake.
from here.
also, here is a description of the unit separator
from here.