Section 16.1: 문자열 리터럴 (literal) 내의 특수 문자를 escape 처리하기

역슬래시

// 아래 두가지의 경우 모두 filename 은 c:\myfile.txt 가 될 것이다 string filename = "c:\\myfile.txt"; string filename = @"c:\myfile.txt";

두번째 예제는 축자 (verbatim) 문자열 리터럴을 사용하는 예제로써, 역슬래시 문자를 escape 문자로 취급하지 않는다.

따옴표

string text = "\"Hello World!\", said the quick brown fox."; string verbatimText = @"""Hello World!"", said the quick brown fox.";

위 두가지 변수는 모두 아래와 같은 동일한 문자열을 가지게 될 것이다.

"Hello World!", said the quick brown fox.

개행 문자

축자 문자열 리터럴 안에는 개행 문자를 포함시킬 수 있다:

string text = "Hello\r\nWorld!"; string verbatimText = @"Hello World!";

위 두가지 변수는 모두 아래와 같은 동일한 문자열을 가지게 될 것이다.

Hello World!
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/CSharpBook/

반응형

+ Recent posts