Advertisement
VodVas

Split

Sep 2nd, 2023
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | Software | 0 0
  1. namespace Split
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             string lettering = "Today I'm going to school";
  8.             string[] subString = lettering.Split(' ');
  9.  
  10.             foreach (var sub in subString)
  11.             {
  12.                 Console.WriteLine($"Substring: {sub}");
  13.             }
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement