Section 11.12: 주어진 문자열에서 부분 문자열 (substring) 추출하기

string helloWorld = "Hello World!"; string world = helloWorld.Substring(6); //world = "World!" string hello = helloWorld.Substring(0,5); // hello = "Hello"

Substring 은 주어진 index 로부터 문자열 끝까지의 부분 문자열을 반환하거나, index 로부터 일정 갯수의 문자를 가진 부분 문자열을 반환한다 (두 경우 모두 해당 index 위치에 있는 글자까지 부분 문자열에 포함이 된다).

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

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

반응형

+ Recent posts