Section 14.3: 문자열에서 공백 문자를 제거하기 (Trimming)

System.String.Trim 메소드는 문자열의 가장 앞/뒤에 붙어있는 공백 문자들을 제거하기 위해 사용된다:

string s = " String with spaces at both ends "; s = s.Trim(); // s = "String with spaces at both ends"

추가적으로:

  • 문자열의 앞쪽에 위치한 공백 문자들만 제거하고자 한다면, System.String.TrimStart 를 사용한다.
  • 문자열의 뒤쪽에 위치한 공백 문자들만 제거하고자 한다면, System.String.TrimEnd 를 사용한다.

Substring 을 통해 문자열의 일부분을 추출하기

System.String.Substring 메소드를 사용하면 문자열에서 일부분만을 추출해 낼 수 있다.

string str = "A portion of word that is retained"; string s1 = str.Substring(26); // s1 = "retained" string s2 = str.Substring(0,5); // s2 = "A por"
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

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

반응형

+ Recent posts