study record

[알고리즘-자바] String to int, String.format(), split() (코드업 기초100제 1019) 본문

알고리즘

[알고리즘-자바] String to int, String.format(), split() (코드업 기초100제 1019)

asong 2020. 11. 6. 10:41

String to int

String from = "123";

int to = Integer.parseInt(from);


String.format()

-필수값: %와 conversion 으로 무조건 있어야합니다.
"conversion": 표현 할 데이터의 타입으로, s(문자열), d(정수), x(16진수), o(8진수), f(실수)

ex) %s, %d, %x, %o, %f


ex) System.out.println(String.format("%s, %s", "KOREA", "JAPAN"));

System.out.println(String.format("%04d.%02d.%02d", year, month, date));

 

.split()

String a=sc.next();

String[] b=a.split("[.]");

for(int i=0; i< b.length; i++){}

.(닷)을 기준으로 split하기 위해서는 [ ] 사이에 .(닷)을 넣어야 한다.