// import java.util.regex.Pattern;
import java.util.regex.Pattern;
class Solution {
public boolean solution(String s) {
boolean answer = false;
if(s.length() == 4 || s.length() == 6){
if(Pattern.matches("[0-9]+", s)){
answer = true;
}
}
return answer;
}
}
Pattern.matches : 문자열 검증
문자열 s가 "0-9"로만 이루어져 있는지 검증
'JAVA STUDY > 프로그래머스' 카테고리의 다른 글
프로그래머스 문자열 밀기 문제 (0) | 2023.12.15 |
---|---|
프로그래머스 n의 배수 고르기 문제 (0) | 2023.12.15 |
프로그래머스 가운데 글자 가져오기 (1) | 2023.12.15 |
프로그래머스 문자 반복 출력하기 문제 (0) | 2023.12.15 |
프로그래머스 배열 자르기 문제 (0) | 2023.12.15 |