Advertisement
svetlyoek

Untitled

Mar 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Text;
  4.  
  5. namespace ConsoleApp213
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. string removeWord = Console.ReadLine();
  12. string text = Console.ReadLine();
  13. while (text.Contains(removeWord))
  14. {
  15.  
  16. text=text.Replace(removeWord, " ");
  17.  
  18. }
  19.  
  20.  
  21. Console.WriteLine(text);
  22.  
  23. }
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement