Java: Insert a word in the middle of the another string
Java Basic: Exercise-67 with Solution
Write a Java program to insert a word in the middle of another string. Insert "Tutorial" in the middle of "Python 3.0", so the result will be Python Tutorial 3.0.
Pictorial Presentation:

Sample Solution:
Java Code:
import java.lang.*;
public class Exercise67 {
public static void main(String[] args) {
// Define the main string and the word to insert
String main_string = "Python 3.0";
String word = "Tutorial";
// Create a new string by concatenating substrings
String result = main_string.substring(0, 7) + word + main_string.substring(6);
// Print the resulting string
System.out.println(result);
}
}
Sample Output:
Python Tutorial 3.0
Flowchart:

Java Code Editor:
Previous: Write a Java program to compute the sum of the first 100 prime numbers.
Next: Write a Java program to create a new string of 4 copies of the last 3 characters of the original string.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join