Advertisement
elena1234

ValidUsernames*

Nov 13th, 2020 (edited)
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. namespace ValidUsernames
  5. {
  6.     class MainClass
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             string[] usernames = Console.ReadLine().Split(", ",StringSplitOptions.RemoveEmptyEntries);
  11.             StringBuilder sb = new StringBuilder();
  12.  
  13.             foreach (var name in usernames)
  14.             {
  15.                 bool isValid = true;
  16.                 if (name.Length>=3 && name.Length <= 16)
  17.                 {
  18.                     foreach (var symbol in name)
  19.                     {
  20.                         if(!(char.IsLetter(symbol) || char.IsDigit(symbol) || symbol=='-' || symbol == '_'))
  21.                         {
  22.                             isValid = false;
  23.                             break;
  24.                         }
  25.                     }
  26.  
  27.                     if (isValid == true)
  28.                     {
  29.                         sb.AppendLine(name);
  30.                     }
  31.                 }
  32.             }
  33.  
  34.             Console.WriteLine(sb);
  35.         }
  36.       }
  37.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement