TheBulgarianWolf

Regex Split

Apr 8th, 2021
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. namespace SplitString
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string numbers = "1   5  3 2 111 888      5 6";
  11.             string[] splitted = Regex.Split(numbers, @"\s+");
  12.             Console.WriteLine(string.Join(',',splitted));
  13.         }
  14.     }
  15. }
Add Comment
Please, Sign In to add comment