14 May String substring(int beginIndex) method in Java
The substring(int beginIndex) method in Java returns a new string that is a substring of this string.
Syntax
Let us see the syntax,
1 2 3 |
String substring(int beginIndex) |
Parameters
Let us see the parameters,
- beginIndex− start index
Example
The following is an example of substring(int beginIndex),
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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) ); System.out.print("Result = " ); System.out.println(message.substring(0) ); } } |
Output
The following is the output,
No Comments