728x90 반응형 자바77 [Java] String 메소드 정리 int length() 문자열의 개수를 반환 String str = "abcdef" str.length(); // 5 String[] split(String regex) String[] split(String regex, int limit) 문자열을 특정 문자를 기준으로 나눈다. 나눌 때 길이 제한을 둘 수 있다. String str = "a b c d e f"; str.split(" "); // [a, b, c, d, e, f] str.split(" ", 2); // [a, b c d e f] String concat(B) 두개의 문자열을 합친다. String str = "abc"; str.concat("def"); // abcdef String replace(String target, String r.. 2023. 3. 3. 프로그래머스 - 가위 바위 보 class Solution { public String solution(String rsp) { String answer = ""; int len = rsp.length(); for(int i =0; i 2023. 3. 3. 프로그래머스 - 제곱수 판별하기 class Solution { public int solution(int n) { for(int i=1; i 2023. 3. 3. 프로그래머스 - 개미 군단 class Solution { public int solution(int hp) { int answer = 0; answer = hp/5 + (hp%5)/3 + ((hp%5)%3)/1; return answer; } } 2023. 3. 3. 이전 1 ··· 4 5 6 7 8 9 10 ··· 20 다음 728x90 반응형