Advertisement
elena1234

SimpleTextEditor(with stack to save history)-C# Advanced

Dec 13th, 2020
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.99 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Linq;
  5.  
  6. namespace SimpleTextEditor
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             var historyForAllTextConditions = new Stack<string>();
  13.             var sb = new StringBuilder();
  14.             historyForAllTextConditions.Push(sb.ToString());
  15.  
  16.             int numberOfCommands = int.Parse(Console.ReadLine());
  17.             for (int i = 0; i < numberOfCommands; i++)
  18.             {
  19.                 string command = Console.ReadLine();
  20.                 string[] commandArray = command.Split();
  21.                 if (commandArray[0] == "1")
  22.                 {
  23.                     string someString = commandArray[1];
  24.                     sb.Append(someString);
  25.                     historyForAllTextConditions.Push(sb.ToString());
  26.                 }
  27.  
  28.                 else if (commandArray[0] == "2")
  29.                 {
  30.                     int count = int.Parse(commandArray[1]);
  31.                     int lengthToErases = count;
  32.                     int startIndex = sb.Length - count;
  33.                     sb.Remove(startIndex, lengthToErases);
  34.                     historyForAllTextConditions.Push(sb.ToString());
  35.                 }
  36.  
  37.                 else if (commandArray[0] == "3")
  38.                 {
  39.                     int index = int.Parse(commandArray[1]);
  40.                     char symbol = sb[index - 1];
  41.                     Console.WriteLine(symbol);
  42.                 }
  43.  
  44.                 else if (commandArray[0] == "4")
  45.                 {
  46.                     if (historyForAllTextConditions.TryPop(out string currentCondition))
  47.                     {
  48.                         sb = new StringBuilder();
  49.                         if (historyForAllTextConditions.TryPeek(out string previousCondition))
  50.                         {
  51.                             sb.Append(previousCondition);
  52.                         }
  53.                     }
  54.                 }
  55.             }
  56.         }
  57.     }
  58. }
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement