일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코딩테스트 고득점 Kit 완전탐색
- React JS
- 프로그래머스 자바
- codesandbox
- 프로그래밍 언어론
- 장고
- react firebase
- 자바 공부
- useState
- websocket
- design pattern
- vanillaJS
- useEffect
- 컴퓨터 네트워크
- 리액트 훅
- 백준
- 디자인 패턴
- react hook
- 프로그래머스 완전탐색
- 코틀린
- JavaScript
- 자바스크립트
- Java
- react
- 코딩테스트 고득점 Kit
- NextJS
- 리액트
- 자바
- 데이터모델링과마이닝
- 프로그래머스
Archives
- Today
- Total
목록문자열 다루기 자바 (2)
기록하는 개발자
[Java] String 내장 함수
Stirng string = "string"; string.charAt(index) : 특정 index 위치의 문자 반환 string.indexOf() / lastIndexOf() : 문자열 검색해서 위치 반환 string.length() : 문자열 길이 반환 string.substring(indexA, indexB+1) : indexA부터 indexB까지 값을 잘라 반환한다. ex) string.subString(1, s.length()-1); // 앞 뒤 한 문자씩 잘라준다. string.replace('firstParameter','secondParameter'); : character형의 모든 firstParameter를 secondParameter로 변경한다. ex) string.replace(..
JAVA
2021. 7. 28. 16:25
[프로그래머스][JAVA] 문자열 다루기
문제 설명 문자열 s의 길이가 4 혹은 6이고, 숫자로만 구성돼있는지 확인해주는 함수, solution을 완성하세요. 예를 들어 s가 a234이면 False를 리턴하고 1234라면 True를 리턴하면 됩니다. 제한 사항 s는 길이 1 이상, 길이 8 이하인 문자열입니다. 입출력 예 s return a234 false 1234 true 1 2 3 4 5 6 7 8 9 10 11 12 13 class Solution { public boolean solution(String s) { boolean answer = true; if(s.length()==4||s.length()==6) { for(int i=0; i
Algorithm
2020. 2. 7. 16:24