Answers for "java substring one parameter"

1

java substring one parameter

"Chaitanya".substring(2)//=>aitanya 
//make me a SubString starting from index 2 to the end of the string!
Posted by: Guest on May-27-2021
68

java substring

String s = "Let's Get This Bread";

String subString = s.substring(6, 9);
				// (start index inclusive, end index exclusive)

// subString == "Get"
Posted by: Guest on February-18-2020
10

how to do substring java

class Main {
  public static void main (String[] args) {
    
    String str = "Hello World!";
    
    String firstWord = str.substring(0, 5);
    //two parameters are start and end index: (inclusive, non-inclusive)
    
    String secondWord = str.substring(6, 11);
    
    //firstWord has string "Hello"
    //secondWord has string "World"
  }
}
Posted by: Guest on May-27-2020
9

how to substring in java

class scratch{
    public static void main(String[] args) {
        String hey = "Hello World";
        System.out.println( hey.substring(0, 5) );
        // prints Hello;
    }
}
Posted by: Guest on January-08-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language