Section 11.18: 배열 내 문자열들을 하나의 문자열로 이어붙이기

System.String.Join 메소드는 문자열 배열 내의 모든 요소들 사이에 특정 구분자를 이어붙인 형태의 새로운 문자열을 생성해 낼 수 있다:

string[] words = {"One", "Two", "Three", "Four"}; string singleString = String.Join(",", words); // singleString = "One,Two,Three,Four"
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

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

반응형

+ Recent posts