fork(3) download
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5. public Main()
  6. {
  7. Scanner sc = new Scanner(System.in);
  8. String nome = "fooBar123456";
  9. if (checkLetters(nome))
  10. {
  11. System.out.println("Fazer algo aqui...");
  12. }
  13. else
  14. {
  15. System.out.println("Neste campo não é permitido números. Tente Novamente.");
  16. }
  17. }
  18.  
  19. public boolean checkLetters(String str)
  20. {
  21. return str.matches("[a-zA-Z]+");
  22. }
  23.  
  24. public static void main(String[] args) {
  25. new Main();
  26. }
  27. }
Success #stdin #stdout 0.1s 380736KB
stdin
Standard input is empty
stdout
Neste campo não é permitido números. Tente Novamente.