0
hi,
you can read the file to a big string and split it into string array (splitted by CRLF or what the terminator is) and then manipulate that array or make a List<string> out of it ;)
0
You should look at the string replace method and string remove method (also index and index of any to find the correct starting position). You might also want to look into StringComparison (Ordinal or OrdinalIgnoreCase).
Remove takes as arguments the starting position and the length (of characters to remove).
Replace takes as arguments the old and new strings or character to replace.