Write a C# Sharp program to check if a given string begins with 'abc' or 'xyz'. If the string begins with 'abc' or 'xyz' return 'abc' or 'xyz' otherwise return the empty string

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to check if a given string begins with 'abc' or 'xyz'. If the string begins with 'abc' or 'xyz' return 'abc' or 'xyz' otherwise return the empty string

Sample Output:

abc
abc

xyz
xyz

الأجوبة

using System;

namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test("abc"));
            Console.WriteLine(test("abcdef"));
            Console.WriteLine(test("C"));
            Console.WriteLine(test("xyz"));
            Console.WriteLine(test("xyzsder"));
            Console.ReadLine();
        }

 public static string test(string s1) 
        {
          if (s1.StartsWith("abc"))
            {
                return "abc";
            }
            else if (s1.StartsWith("xyz"))
            {
                return "xyz";
            }
            else
            {
                return String.Empty;
            }
        }
   }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...