docs.microsoft.com/ko-kr/dotnet/csharp/how-to/modify-string-contents
최종적으로 merge한 코드이다.
private void button1_Click(object sender, EventArgs e)
{
string source = "The mountains are behind the clouds today.";
// Replace all occurrences of one char with another.
var replacement = source.Replace(' ', '_');
Console.WriteLine(source);
Console.WriteLine(replacement);
string path = @"C:\Users\jh\Desktop\test.txt";
string[] textValue = System.IO.File.ReadAllLines(path); // 한줄 씩 읽기
//string textValue = System.IO.File.ReadAllText(path); // 모든줄 읽기
if (textValue.Length>0)
{
for (int i = 0; i < textValue.Length; i++)
{
textBox1.Text = textValue[i];
}
}
//string savePath = @"c:\test.txt";
//string textValue = "텍스트 파일 입력";
//System.IO.File.WriteAllText(savePath, textValue, Encoding.Default);
}
잘 동작한다.
Using System.IO;
를 추가해주어야한다.
'프로그래밍 > C#' 카테고리의 다른 글
[C#] File Exist 문서내에 파일이 존재하는지 (1) | 2021.03.16 |
---|---|
[c#] new Form 생성, 새로운 폼 만들기 (0) | 2021.03.16 |
[C#] opendialog 함수, OFD 간단한 사용법 (0) | 2021.03.16 |
[C#] 현재 경로, user 경로 등 유용한 경로 모음 (0) | 2021.03.16 |
[C#] 파일이름 변경하기 (0) | 2021.03.16 |
댓글