Skip to content

Instantly share code, notes, and snippets.

@mercuryfield
Last active February 8, 2025 13:47
Show Gist options
  • Save mercuryfield/f500ed2f338eec3cbc4feadbb6b11a8b to your computer and use it in GitHub Desktop.
Save mercuryfield/f500ed2f338eec3cbc4feadbb6b11a8b to your computer and use it in GitHub Desktop.
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