Advertisement
NikaBang

Split

Oct 11th, 2024 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         string text = "String.Split возвращает массив строк, содержащий подстроки в этом экземпляре, разделенные элементами указанной строки или массива символов Юникода.";
  8.         char separator = ' ';
  9.         string[] words = text.Split(separator);
  10.  
  11.         foreach (string word in words)
  12.         {
  13.             Console.WriteLine(word);
  14.         }
  15.  
  16.         Console.ReadKey();
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement