Written by
java-style
on
on
자바에서 "." (점)을 기준으로 split 하기
자바에서 "." (점)을 기준으로 split 하기
String[] temparr = result.split(".");
으로 split을 하면 안되고
String[] temparr = result.split("\\.");
으로 하면 된다!
from http://yanoos.tistory.com/85 by ccl(A) rewrite - 2021-10-23 04:01:41