Advertisement
Spocoman

01. Valid Usernames

Apr 14th, 2023
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.60 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace ValidUsername
  6. {
  7.  
  8.     class Program
  9.     {
  10.         static void Main()
  11.         {
  12.             string[] usernames = Console.ReadLine().Split(", ");
  13.  
  14.             for (int i = 0; i < usernames.Length; i++)
  15.             {
  16.                 string username = usernames[i];
  17.  
  18.                 if (username.Length >= 3 && username.Length <= 16)
  19.                 {
  20.                     bool isValid = true;
  21.                     for (int j = 0; j < username.Length; j++)
  22.                     {
  23.                         if (!char.IsLetterOrDigit(username[j]) && username[j] != '-' && username[j] != '_')
  24.                         {
  25.                             isValid = false;
  26.                             break;
  27.                         }
  28.                     }
  29.  
  30.                     if (isValid)
  31.                     {
  32.                         Console.WriteLine(username + " ");
  33.                     }
  34.                 }
  35.             }
  36.         }
  37.     }
  38. }
  39.  
  40.  
  41. REGEX SOLUTION:
  42.  
  43. using System;
  44. using System.Linq;
  45. using System.Collections.Generic;
  46. using System.Text.RegularExpressions;
  47.  
  48. namespace ValidUsername
  49. {
  50.  
  51.     class Program
  52.     {
  53.         static void Main()
  54.         {
  55.             string pattern = @"^[A-Za-z-_]{3,16}$";
  56.  
  57.             var usernames = Console.ReadLine().Split(", ");
  58.  
  59.             for (int i = 0; i < usernames.Length; i++)
  60.             {
  61.                 if (Regex.IsMatch(usernames[i], pattern))
  62.                 {
  63.                     Console.WriteLine(usernames[i]);
  64.                 }
  65.             }
  66.         }
  67.     }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement