Mainly on Personal Genome Industry, Preventable Medicine, Mobile healthcare tech, and Bioinformatics.
문자열을 읽어 형변환을 하는 경우
str.substring(23,26)을 읽어 정수형으로 형 변환.
int a=Integer.parseInt(str.substring(23,26));
이 때, 첫 문자가 공백문자인 경우, 에러 발생.
str.substring(23,26).trim() 을 써서 공백문자를 제거한다.
No comments:
Post a Comment