Advertisement
elena1234

WorldTour-ExamPreparation(replace whithout while loop)

Dec 2nd, 2020 (edited)
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.07 KB | None | 0 0
  1. using System;
  2.  
  3. namespace WorldTour
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string initialString = Console.ReadLine();
  10.             string command = string.Empty;
  11.             while ((command = Console.ReadLine()) != "Travel")
  12.             {
  13.                 string[] commandArray = command.Split(':');
  14.                 if (commandArray[0] == "Add Stop")
  15.                 {
  16.                     int index = int.Parse(commandArray[1]);
  17.                     string text = commandArray[2];
  18.                     if (index >= 0 && index <= initialString.Length)
  19.                     {
  20.                         initialString = initialString.Insert(index, text);
  21.                     }
  22.  
  23.                     Console.WriteLine(initialString);
  24.                 }
  25.  
  26.                 else if (commandArray[0] == "Remove Stop")
  27.                 {
  28.                     int startIndex = int.Parse(commandArray[1]);
  29.                     int endIndex = int.Parse(commandArray[2]);
  30.                     if ((startIndex >= 0 && startIndex <= initialString.Length-1) && (endIndex >= 0 && endIndex <= initialString.Length-1) && startIndex <= endIndex)
  31.                     {
  32.                         int length = endIndex - startIndex + 1;
  33.                         initialString = initialString.Remove(startIndex, length);
  34.                     }
  35.  
  36.                     Console.WriteLine(initialString);
  37.                 }
  38.  
  39.                 else if (commandArray[0] == "Switch")
  40.                 {
  41.                     string oldString = commandArray[1];
  42.                     string newString = commandArray[2];
  43.                     if (initialString.Contains(oldString) && oldString != newString)// Replace whithout while loop
  44.                     {                      
  45.                         initialString = initialString.Replace(oldString, newString);
  46.                     }
  47.  
  48.                     Console.WriteLine(initialString);
  49.                 }
  50.             }
  51.  
  52.             Console.WriteLine($"Ready for world tour! Planned stops: {initialString}");
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement