You are viewing a single comment's thread. Return to all comments →
public class Solution {
private static final Scanner scan = new Scanner(System.in); public static void main(String[] args) { int n = Integer.parseInt(scan.nextLine()); while (n-- != 0) { String userName = scan.nextLine(); if(userName.length()>=8 && userName.length()<=30){ char firstChar=userName.charAt(0); if(userName.matches("[a-zA-Z0-9_]*") && Character.isLetter(firstChar)){ System.out.println("Valid"); }else{ System.out.println("Invalid"); } }else{ System.out.println("Invalid"); } }
}}
Seems like cookies are disabled on this browser, please enable them to open this website
Valid Username Regular Expression
You are viewing a single comment's thread. Return to all comments →
public class Solution {
}}