How do I read a file from a specified position to the end of that line.
Example:
File Contents:
01234567
f1=value
f2=value
f3=value
01234567 = character position. I want it to start reading the line from the "v" in value and I want it to read till the end of the line. So the position would be 3.
Run your text file through
colrm
first. Or, when reading each line pragmatically, useString.substring
.