Skip to content

Instantly share code, notes, and snippets.

@memish
Created September 2, 2017 14:49
Show Gist options
  • Save memish/0a60514a7df4d83a3201e303e9be383c to your computer and use it in GitHub Desktop.
Save memish/0a60514a7df4d83a3201e303e9be383c to your computer and use it in GitHub Desktop.
public class SubstringExample{
public static void main(String args[]){
String s1="javatpoint";
System.out.println(s1.substring(2,4));//returns va
System.out.println(s1.substring(2));//returns vatpoint
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment