문자열 자르기

프로그래밍/Android (Java)|2015. 12. 14. 08:21
반응형

String url = "http://sysdocu.tistory.com/name.txt";

 

String newurl = url.substring(6);    // http:// 부분 제외하고 newurl 에 다시 입력

 

String protocol = url.substring(0,4);    // 프로토콜만 protocol 에 입력
 

String[] split = newurl.split("/");   // / 를 기준으로 자르기. split[0] : sysdocu.com, split[1] : name.txt

 

String type = split[1].substring(split[1].length() - 3);    // 확장자(.txt)만 type 에 입력

반응형

댓글()