Dear all, I have upgraded from Mathematica Version 10 to 12. Up to now I imported my datasets from a textfile using 
 
Import[fn, "TSV", "Numeric" -> False]
Im Mathematica 10 my tab separated data was nicely separated as you can see in the following InputForm:
 
{" 2e54295", "       0"}
In Mathematica 12 the preceding blanks, which are important for a checksum, are missing. 
 
{"2e54295", "0"}
I haven't found a related option. Any suggestions?
Maybe you can directly share an example using the following ImportString as starting point
 
ImportString[" 2e54295\t       0", "TSV", 
  "Numeric" -> False] // InputForm