w3resource

C#: Create a coded string from a given string, using specified formula

C# Sharp Basic: Exercise-67 with Solution

Coded String Conversion

Write a C# Sharp program to create a coded string from a given string, using a specified formula.

Replace all 'P' with '9', 'T' with '0', 'S' with '1', 'H' with '6' and 'A' with '8'.

Sample Solution:

C# Sharp Code:

using System;

namespace exercises
{
    class Program
    {
        // Main method where the program execution begins
        static void Main(string[] args)
        {
            // Calls the test function with different string arguments and prints the results
            Console.WriteLine(test("PHP")); // Output: 968
            Console.WriteLine(test("JAVASCRIPT")); // Output: J9781691
        }

        // Function to replace specific characters in a string with corresponding digits
        public static string test(string str1)
        {
            // Using multiple calls to Replace method to replace characters with specific digits
            return str1.Replace("P", "9").Replace("T", "0").Replace("S", "1").Replace("H", "6").Replace("A", "8");
        }
    }
}

Sample Output:

969
J8V81CRI90

Flowchart:

Flowchart: C# Sharp Exercises - Find the minimum value from two given two numbers, represented as string.

C# Sharp Code Editor:

Previous: Write a C# Sharp program to find the minimum value from two given two numbers, represented as string.
Next: Write a C# Sharp program to count a specified character (both cases) in a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/csharp-exercises/basic/csharp-basic-exercise-67.php