Guest User

Untitled

a guest
Nov 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. Console.WriteLine(slovo.Split(' ').Length);
  2.  
  3. string slovo2= slovo.Split(' ').Last();
  4.  
  5. string slovo1 = slovo.Split()[0];
  6.  
  7. slovo = slovo.Trim();
  8.  
  9. string text = slovo.Remove(slovo1, slovo2);
  10.  
  11. Console.WriteLine( text );
  12.  
  13. // ... семистрочная строка
  14. string test1 = "0123456";
  15.  
  16. // ... Начать удаление с 4го символа включительно
  17. string result1 = test1.Remove(3);
  18.  
  19. // ... Показать "012"
  20. Console.WriteLine(result1);
Add Comment
Please, Sign In to add comment