substring - 09-30

JungSik Heo·2022년 9월 29일
0
post-custom-banner

subString()

substring(int startIndex) 

startIndex부터 끝까지의 문자열을 리턴합니다.
public String substring(int startIndex)

substring() 메소드는
위 그림과 같이
substring() 메소드에 파라미터를 1개만 전달(startIndex)하면
문자열의 startIndex부터 끝까지의 문자열을 잘라서 리턴합니다.
(index는 0부터 시작합니다.)

substring(int startIndex, int endIndex) 


substring() 메소드는
위 그림과 같이
substring() 메소드에 2개의 파라미터를 전달하면(startIndex, endIndex)
startIndex부터 endIndex까지의 문자열을 잘라서 리턴합니다.
정확하게는 startIndex부터 lastIndex 전까지의 문자열을 잘라서 리턴합니다


  코드 

public class SubstringExample {    
   public static void main(String[] args) {         
   String str = "Hello"; 
   System.out.println(str.substring(2, 4)); // "ll"
   System.out.println(str.substring(2, str.length())); // "llo"     
   }
}

결과  
llllo

profile
쿵스보이(얼짱뮤지션)
post-custom-banner

0개의 댓글