Tuesday, 21 August 2018

Find which word have more length form the given string "Anand Swaroop Upadhyay as df gh"



  string  temp=string.Empty;
            string strstring = "Anand Swaroop Upadhyay  as df gh";
            string [] strArray= strstring.Split(' ');
            foreach (var strvar in strArray)
            {
                if (string.IsNullOrEmpty(temp))
                {
                    temp = strvar;
                }
                else
                {
                    if (strvar.Length > temp.Length)
                    {
                        temp = strvar;
                    }

                }
            }
            Console.WriteLine(temp +"  is gretter");

            Console.Read();

No comments:

Post a Comment