String.Split에서 Enter Key(\r\n)은 다음과 같이 처리하면 된다.
1.
string[] lines = doc.Split('\n');
for (int i = 0; i < lines.Length; i+= 1)
lines[i] = lines[i].Trim();
2.
*예제.txt에는 \r\n이 포함된 문자열이 있다고 가정
string path = "예제.txt";
string content = File.ReadAllText(path);
string[] lines = content.Split(Environment.NewLine.ToCharArray(),
StringSplitOptions.RemoveEmptyEntries);
'Common > C#' 카테고리의 다른 글
Enumerable Class 1 : Enumerable Method - Aggregate (0) | 2014.05.22 |
---|---|
Enumerable Class 0 (0) | 2014.05.22 |
C#을 이용한 NTP Service (0) | 2014.05.17 |
참조예제와 ICloneable (0) | 2014.05.08 |