Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Make a new string from two given string in such a way that, each character of two string will come respectively

Java String: Exercise-83 with Solution

Write a Java program to make a new string from two given string in such a way that, each character of two string will come respectively.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String stringMixing(String stng1, String stng2) 
{
  int len1 = stng1.length();
  int len2 = stng2.length();
  int max_len = Math.max(len1, len2);
  String newstring = "";
  for (int i = 0; i < max_len; i++) 
  {
    if (i <= len1-1)
      newstring += stng1.substring(i,i+1);
    if (i <= len2-1)
      newstring += stng2.substring(i,i+1);
  }
  return newstring;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "welcome";
      String str2 =  "w3resource";	  
      System.out.println("The given strings  are: "+str1+"  and  "+str2);
      System.out.println("The new string is: "+m.stringMixing(str1,str2));
	  }
}

Sample Output:

The given strings  are: welcome  and  w3resource
The new string is: wwe3lrceosmoeurce

Pictorial Presentation:

Java String Exercises: Make a new string from two given string in such a way that, each character of two string will come respectively

Flowchart:

Flowchart: Java String Exercises - Make a new string from two given string in such a way that, each character of two string will come respectively

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to create a new string repeating every character twice of a given string.
Next: Write a Java program to make a new string made of p number of characters from the first of a given string and followed by p-1 number characters till the p is greater than zero.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe