w3resource

Java: Extract the first half of a string of even length

Java Basic: Exercise-69 with Solution

Write a Java program to extract the first half of a even string.

Pictorial Presentation:

Java Basic Exercises: Extract the first half of a string of even length

Sample Solution:

Java Code:

import java.lang.*;

public class Exercise69 {
    public static void main(String[] args) {
        // Define the main string
        String main_string = "Python";

        // Extract the substring from the beginning to the middle of the string
        String substring = main_string.substring(0, main_string.length() / 2);

        // Print the extracted substring
        System.out.println(substring);
    }
}

Sample Output:

Pyt

Flowchart:

Flowchart: Java exercises: Extract the first half of a string of even length

Java Code Editor:

Previous: Write a Java program to create a new string of 4 copies of the last 3 characters of the original string.
Next: Write a Java program to create a string in the form short_string + long_string + short_string from two strings.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.