Last active
February 8, 2025 13:47
-
-
Save mercuryfield/f500ed2f338eec3cbc4feadbb6b11a8b to your computer and use it in GitHub Desktop.
This file contains 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 quote = "Как ВПН для телевизора филлипс поставить?"; | |
string[] substrings = quote.Split(' '); | |
foreach (string substring in substrings) | |
{ | |
Console.WriteLine($"Подстрока: {substring}"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment