String substring(int beginIndex, int endIndex) method in Java

The substring(int beginIndex, int endIndex) method in Java returns a new string that is a substring of this string. Set end index as well.

Syntax

Let us see the syntax,

String substring(int beginIndex, int endIndex)

Parameters

Let us see the parameters,

  • beginIndex− start index
  • endIndex− end index

Example

The following is an example of substring(int beginIndex, int endIndex),

public class StudyopediaDemo {

   public static void main(String args[]) {
	 
      String message = new String("Studyopedia provides free learning content!");
      System.out.println("String: "+message);
	  
      System.out.print("Result = ");
      System.out.println(message.substring(25,34) );

      System.out.print("Result = ");
      System.out.println(message.substring(0,11) );
  } 
}

Output

The following is the output,

Java substring method with endindex

String substring(int beginIndex) method in Java
String toCharArray() method in Java
Studyopedia Editorial Staff
[email protected]

We work to create programming tutorials for all.

No Comments

Post A Comment