Eigentlich eine ziemliche einfache Methode.
Sie entfernt Text am Anfang und Ende jeder Zeile eines Textes. (Wendet die String.Trim()-Methode auf jede Zeile an)
public static string TrimAllLines(this string input)
{
string output = "";
string[] seperator = { "\r\n" };
foreach (string line in input.Split(seperator, StringSplitOptions.None))
output += line.Trim() + Environment.NewLine;
return output.Trim();
}
3 Kommentare zum Snippet