Java: Extract the first half of a string of even length
Extract First Half
Write a Java program to extract the first half of a even string.
Pictorial Presentation:
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:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics