접두사인지 확인하기
https://school.programmers.co.kr/learn/courses/30/lessons/181906
문제 풀이
1 2 3 4 5 6 7 8 9
public class Solution { public int solution(String my_string, String is_prefix) { if (my_string.startsWith(is_prefix)) { // startsWith 메서드를 사용하여 is_prefix 문자열이 my_string의 접두사인지 확인 return 1; } else { return 0; } } }
startsWith
메서드는 대상 문자열이 특정 문자열로 시작하는지 여부를 판단하는 기능을 제공한다. 이후 조건에 따라 1 또는 0을 반환한다.
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.