728x90 반응형 SUBSTRING1 [java] 맵에 키,값 있는지 확인하기(containsKey), 문자열 자르기(substring) containsKey : 해당 map에 키값이 있으면 true, 없으면 false를 반환 containValue :해당 map에 값이 있으면 true, 없으면 false를 반환 예제코드 HashMap hashMap = new HashMap(); hashMap.put("A", "APPLE"); hashMap.put("B", "BANANA"); System.out.println(hashMap.containsKey("A")); System.out.println(hashMap.containsKey("E")); //콘솔 결과 true false substring 1) 인자를 하나만 받는경우 -> substring(3) 3번째 자리부터 마지막까지의 문자열을 리턴한다. 2) 인자를 두개 받는경우 -> substrin.. 2022. 1. 10. 이전 1 다음 728x90 반응형