我有一个包含任意行数的字符串列表。每行有 12 个字符长,我想将其内容打印到文本文件中。这很容易做到
System.IO.File.WriteAllLines(@".\strings.txt", myList);
现在,我想newLine
在每 6 个字符后插入一个,有效地将列表的计数加倍。
例如
System.IO.File.WriteAllLines(@".\strings.txt", myList);
// Output from strings.txt
123456789ABC
123456789ABC
// ...
// command to insert newLine after every 6 characters in myList
System.IO.File.WriteAllLines(@".\strings.txt", myListWithNewLines);
// Output from strings.txt
123456
789ABC
123456
789ABC