Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Login
- {
- public static void validarUsuario( String usuario )
- {
- boolean bool = usuario.matches( "\\w+" );
- System.out.println( "Usuario Válido: " + bool );
- }
- public static void main( String[] args )
- {
- Login.validarUsuario( "hola0,123" ); //False
- Login.validarUsuario( "" ); //False
- Login.validarUsuario( "hola0123" ); //True
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement