Last active
December 11, 2025 12:35
-
-
Save VladimirYus/b72effd0c4e52587ee6fc0310fa23a3a to your computer and use it in GitHub Desktop.
Split
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace Split | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string text = "Строка с несколькими словами, которую нужно разделить на слова и каждое слово с новой строки."; | |
| string[] words = text.Split(); | |
| foreach (string word in words) | |
| { | |
| Console.WriteLine(word); | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment