본문 바로가기
C#

[C#] string: startsWith, endsWith 시작, 끝 글자 여부

by Minius 2021. 7. 5.
반응형

startsWith

이 글자로 시작하는지를 판단하는 메소드

https://docs.microsoft.com/ko-kr/dotnet/api/system.string.startswith?view=net-5.0 

 

String.StartsWith 메서드 (System)

이 문자열 인스턴스가 지정한 문자로 시작하는지를 확인합니다.Determines whether this string instance starts with the specified character.

docs.microsoft.com

 

endsWith

이 글자로 끝나는지 판단하는 메소드

프로그램 확장자를 이름으로 판단하기에 좋다. (.zip, .xlsx...)

https://docs.microsoft.com/ko-kr/dotnet/api/system.string.endswith?view=net-5.0 

 

String.EndsWith 메서드 (System)

이 문자열 인스턴스의 끝 부분과 지정한 문자열이 일치하는지를 확인합니다.Determines whether the end of this string instance matches a specified string.

docs.microsoft.com

 

댓글