🛫 Programmers School 숨어있는 숫자의 덧셈 (2) 문제 풀이 중 알게된 개념 정리
class Solution {
public int solution(String my_string) {
int answer = 0;
String s = my_string.replaceAll("[^0-9]", " ");
String[] temp = s.split(" ");
for (String t: temp){
if (t.isEmpty()==false) answer += Integer.parseInt(t);
}
return answer;
}
}
문자열이 null이거나 빈 값인지 체크하는 메서드