[Java] 문자열 찾기
public class StringCheck {
public static void main(String[] args){
String comment = "No winter lasts forever no spring skips its turn.";
/* contains : 일치하면 true, 일치하지 않으면 false 반환 */
System.out.println("contains return 1 : "+comment.contains("winter"));
System.out.println("contains return 2 : "+comment.contains("summer"));
/* indexof : 일치하면 true, 일치하지 않으면 false 반환 */
System.out.println("indexOf return 1 : "+ (comment.indexOf("winter") > -1));
System.out.println("indexOf return 2 : "+ (comment.indexOf("summer") > -1));
/* equals : 일치하면 true, 일치하지 않으면 false 반환 */
System.out.println("equals return 1 : "+ comment.equals("No winter lasts forever no spring skips its turn."));
System.out.println("equals return 2 : "+ comment.equals("winter lasts forever"));
/* matches : 일치하면 true, 일치하지 않으면 false 반환 */
System.out.println("matches return 1 : "+ comment.matches(".*spring skips its turn.*"));
System.out.println("matches return 2 : "+ comment.matches("spring skips"));
}
}
결과값
contains return 1 : true contains return 2 : false indexOf return 1 : true indexOf return 2 : false equals return 1 : true equals return 2 : false matches return 1 : true matches return 2 : false
Author And Source
이 문제에 관하여([Java] 문자열 찾기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cateto/Java-문자열-찾기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)