As above, I'm trying to delete two character sub-string (not new-line character, just plain text) from a line.
What I am doing right now is line.replace(line.find("\\n"), 3, "");
because I wanted to escape it, but I receive debug error saying that abort() has been called. Moreover, I am not sure about size 3, because first slash shouldn't be treated as a literal character.