티스토리 뷰
문자열 자르기 - Split
String a = "a,b,c,d,e";
String[] arr = a.split(",");
System.out.println(Arrays.toString(arr));
[a, b, c, d, e]
특정문자 제거하기 - replace
a = a.replace("{","").replace("}","");
맨 앞의 요소 제거하기 - substring
if(a.startsWith(",")) {
a = a.substring(1);
}
String to Int
String s = "123";
int StringToInt = Integer.parseInt(a);
Int to String
int i = 123;
String IntToString = Integer.toString(i);
String index로 접근하기 - charAt
String a = "abcde";
System.out.println(a.charAt(1));
//b
int at1 = a.charAt(1);
System.out.println(at1);
//98
String at2 = a.charAt(1) + "";
System.out.println(at2);
//b
추출한 값을 int에 넣어주면 아스키값 출력
반응형
'자바' 카테고리의 다른 글
[java]Int와 Integer (0) | 2021.06.22 |
---|---|
[JAVA]not dereferenced error (0) | 2021.06.22 |
[JAVA]배열 다루기 (0) | 2021.06.20 |
[JAVA]스택 사용 (0) | 2021.06.20 |
JAVA 배열선언 및 출력 (0) | 2021.05.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- SWiFT
- 알고리즘
- 백준알고리즘
- xcuserdata
- closure
- provisioning key
- Widget
- readme ignore파일 포함한 repository
- xcsharedata
- main branch
- property wrapper
- django
- 애플 인증서
- 백준 4673 swift
- sileo
- 프로퍼티 래퍼
- 이분탐색
- 파이썬
- mvvm in swiftui
- New Group Without Folder
- New Group
- palera1n
- Xcode
- ios
- ios mvvm
- 장고
- 클로저
- 백준 1065번 swift
- 백준
- 애플 인증
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함