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 Exercises: Get a new string of two characters from a given string

C# Sharp Basic: Exercise-38 with Solution

Write a C# program to get a new string of two characters from a given string. The first and second character of the given string must be "P" and "H", so PHP will be "PH".

C# Sharp Exercises: Get a new string of two characters from a given string

Sample Solution:-

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Exercise.38 {
static void Main(string[] args)
        {
string str1 = "PHP Tutorial";
var result = "";

if (str1.Length >= 1 && str1[0] == 'P') 
result += str1[0];
if (str1.Length >= 2 && str1[1] == 'H')
result += str1[1];
Console.WriteLine(result);
        }
}

Sample Output:

PH

Flowchart:

Flowchart: C# Sharp Exercises - Get a new string of two characters from a given string

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to check if "HP" appears at second position in a string and returns the string without "HP".
Next: Write a C# program to find the largest and lowest values from three integer values.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.