Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.18 KB

문자열의 시작과 끝 확인하기.md

File metadata and controls

51 lines (34 loc) · 1.18 KB

🌸 startsWith()/endWith()

startsWith()와 endWith()는 함수명으로 유추해볼 수 있듯이, 문자열에 대해 특정 문자로 시작하는지/끝나는지를 확인할 수 있는 함수 입니다.


아래는 간단한 예시 입니다.


String str = "@@myId";
System.out.println(str.startsWith("@")); // true
System.out.println(str.endWith("@")); // false

이런 식으로 특정 문자열에 대한 확인을 할 수 있습니다.

회원가입 하려는 사용자가 유효하지 않은 문자열을 사용하지는 않는지, 시작/끝 문자열에 있으면 안되는 문자열이 있는지 등등 확인할 때 활용될 수 있겠네욤


startsWith()

Syntax

public boolean startsWith(String chars)

Return

boolean

  • true: 확인하려는 문자열에 특정 문자열로 시작한다.
  • false: 확인하려는 문자열이 특정 문자열로 시작하지 않는다.

endWith()

Syntax

public boolean endWith(String chars)

Return

boolean

  • true: 확인하려는 문자열에 특정 문자열로 끝난다.
  • false: 확인하려는 문자열이 특정 문자열로 끝나지 않는다.