14 May String subSequence(int beginIndex, int endIndex) method in Java
The subSequence(int beginIndex, int endIndex) method in Java returns a new character sequence that is a subsequence of this sequence.
Syntax
Let us see the syntax,
CharSequence subSequence(int beginIndex, int endIndex)
Parameters
Let us see the parameters,
- beginIndex− start index
- endIndex− end index
Example
The following is an example of subSequence(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.subSequence(6, 11) );
System.out.print("Result = " );
System.out.println(message.subSequence(0, 5) );
System.out.print("Result = " );
System.out.println(message.subSequence(21, 25) );
}
}
Output
The following is the output,

No Comments