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

C# Sharp Basic Algorithm Exercises: Combine two strings. If the given strings have different length remove excess characters from the beginning of the longer string


C# Sharp Basic Algorithm: Exercise-82 with Solution

Write a C# Sharp program to combine two given strings. If the given strings have different length remove excess characters from the beginning of the longer string.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Combine two given strings.

Sample Solution:-

C# Sharp Code:

using System;

namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test("abc", "abcd"));
            Console.WriteLine(test("Python", "Python"));
            Console.WriteLine(test("JS", "Python"));
            Console.ReadLine();
        }

  public static string test(string s1, string s2)
        {
            if (s1.Length < s2.Length)
            {
                return s1 + s2.Substring(s2.Length - s1.Length);
            }
            else if (s1.Length > s2.Length)
            {
                return s1.Substring(s1.Length - s2.Length) + s2;
            }
            else
            {
                return s1 + s2;
            }
        }
   }
}

Sample Output:

abcbcd
PythonPython
JSon

Flowchart:

C# Sharp: Flowchart: Concate two given strings.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check whether the first two characters and last two characters of a given string are same.
Next: Write a C# Sharp program to create a new string using 3 copies of the first 2 characters of a given string. If the length of the given string is less than 2 use the whole string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.